We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51db6c7 commit e531768Copy full SHA for e531768
1 file changed
lib/main.dart
@@ -259,16 +259,18 @@ void main(List<String> args) async {
259
MwebdService.instance
260
.logsStream(CryptoCurrencyNetwork.main)
261
.then(
262
- (stream) =>
263
- stream.listen((line) => print("[MWEBD: MAINNET]: $line")),
+ (stream) => stream.listen(
+ (line) => Logging.instance.d("[MWEBD: MAINNET]: $line"),
264
+ ),
265
),
266
);
267
unawaited(
268
269
.logsStream(CryptoCurrencyNetwork.test)
270
271
- stream.listen((line) => print("[MWEBD: TESTNET]: $line")),
272
+ (line) => Logging.instance.d("[MWEBD: TESTNET]: $line"),
273
274
275
276
}
0 commit comments