-
-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
intelliJ console log problem in ios #179
Comments
Not necessarily an answer to your issue but under the hood talker uses So maybe pass a custom logger to your init function. // 🎯 Dart imports:
import 'dart:developer';
// 🐦 Flutter imports:
import 'package:flutter/foundation.dart';
// 📦 Package imports:
import 'package:talker_flutter/talker_flutter.dart';
final talker = TalkerFlutter.init(
logger: TalkerLogger(
output: debugPrint, // or log
settings: TalkerLoggerSettings(),
),
); |
@XanderD99 thx. But both solution gives the same result, suprisingly. |
I have same problem. if you find solution please write his. |
I am having the same problem. Also after initialising using |
same here |
same here |
It is not helps because The solution: |
Unfortunately this doesn't work either |
Yes, that's I wrote. Solution is simply omit // Default settings:
final talker = Talker();
// OR: add custom settings
final talker = Talker(
logger: TalkerLogger(
settings: TalkerLoggerSettings(),
),
); Details: #229 |
@westito thanks for the fast response! |
@westito thanks again for looking into this! |
Describe the bug
When debugging ios application the output to console always like this. Android is colored and looks usual.
To Reproduce
Intellij 2022 and later debug the application in ios
Expected behavior
Colored and formatted logs should be seeble.
Screenshots
Desktop (please complete the following information):
Smartphone (please complete the following information):
The image is from flutter_dio_logger but it is excatly the same case with .info, .warning and error states.
Regarding #104, yes I initialize like this
before using initialization method it was the same characters like <..> in #104 after init, its like this.
The text was updated successfully, but these errors were encountered: