summaryrefslogtreecommitdiff
path: root/lib/services/log_service.dart
diff options
context:
space:
mode:
Diffstat (limited to 'lib/services/log_service.dart')
-rw-r--r--lib/services/log_service.dart2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/services/log_service.dart b/lib/services/log_service.dart
index cf8ea0b..9775823 100644
--- a/lib/services/log_service.dart
+++ b/lib/services/log_service.dart
@@ -2,7 +2,7 @@ import 'package:training_planner/config/defaults.dart';
class LogService {
static void log(dynamic data) {
- if (debug_output) {
+ if (debug_mode) {
print(data);
}
}