16 lines
454 B
Dart
16 lines
454 B
Dart
import 'package:dart_framework/data/isolate_data.dart';
|
|
import 'package:dart_framework/platform/platform_stub.dart'
|
|
if (dart.library.io) 'package:dart_framework/log/log_writer_io.dart'
|
|
if (dart.library.html) 'package:dart_framework/log/log_writer_web.dart';
|
|
|
|
void startLogWriter(String path, Function(IsoMessege) listener) {
|
|
startLog(path, listener);
|
|
}
|
|
|
|
void writeLogWriter(String log) {
|
|
writeLog(log);
|
|
}
|
|
|
|
void endLogWriter() {
|
|
endLog();
|
|
}
|