diff options
Diffstat (limited to 'lib/services/log_service.dart')
| -rw-r--r-- | lib/services/log_service.dart | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/services/log_service.dart b/lib/services/log_service.dart new file mode 100644 index 0000000..cf8ea0b --- /dev/null +++ b/lib/services/log_service.dart @@ -0,0 +1,9 @@ +import 'package:training_planner/config/defaults.dart'; + +class LogService { + static void log(dynamic data) { + if (debug_output) { + print(data); + } + } +} |
