1
0
forked from baron/baron-sso

i18n 대대적 변경

This commit is contained in:
Lectom C Han
2026-02-10 19:13:00 +09:00
parent 798d37bed9
commit 8df95c8a13
27 changed files with 3910 additions and 594 deletions

View File

@@ -1,4 +1,5 @@
import 'dart:convert';
import 'package:flutter/foundation.dart';
import 'package:http/http.dart' as http;
import 'package:flutter_dotenv/flutter_dotenv.dart';
@@ -33,12 +34,14 @@ class AuditService {
);
if (response.statusCode >= 200 && response.statusCode < 300) {
print("Audit log sent successfully");
debugPrint('Audit log sent successfully');
} else {
print("Failed to send audit log: ${response.statusCode} ${response.body}");
debugPrint(
'Failed to send audit log: ${response.statusCode} ${response.body}',
);
}
} catch (e) {
print("Error sending audit log: $e");
debugPrint('Error sending audit log: $e');
}
}
}