summaryrefslogtreecommitdiff
path: root/lib/services/log_service.dart
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrik@amftech.nl>2022-12-01 10:38:25 +0100
committerAldrik Ramaekers <aldrik@amftech.nl>2022-12-01 10:38:25 +0100
commitcfe52b8e397deb03a63dccd8dfd754e38d9b8a85 (patch)
tree1724118c9ce03edd137e22589a617a985121536a /lib/services/log_service.dart
parent03bd15045beee64dab5795053b662d02f7049e31 (diff)
force orientation, fix labels, hide bars when navigating
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);
}
}