remove print

This commit is contained in:
otsmr 2025-11-07 17:50:33 +01:00
parent da4917ad46
commit aebf6de4a5

View file

@ -10,6 +10,7 @@ void initLogger() {
Logger.root.onRecord.listen((record) async {
await _writeLogToFile(record);
if (!kReleaseMode) {
// ignore: avoid_print
print(
'${record.level.name} [twonly] ${record.loggerName} > ${record.message}',
);