Skip to content

Commit

Permalink
[Encryption] Change log level to verbose when enable log
Browse files Browse the repository at this point in the history
  • Loading branch information
hoangdat committed Feb 5, 2025
1 parent 34ae7b7 commit b2c4cdf
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/config/app_config.dart
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,7 @@ abstract class AppConfig {
}
if (json['enable_logs'] is bool) {
DebugUtils.enableLogs = json['enable_logs'];
Logs().level = DebugUtils().isDebugMode ? Level.verbose : Level.warning;
}
if (json['support_url'] is String) {
supportUrl = json['support_url'];
Expand Down

0 comments on commit b2c4cdf

Please sign in to comment.