mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-27 23:09:35 +01:00
fix: logger
This commit is contained in:
parent
0abebddf53
commit
64c5ea93c3
@ -309,7 +309,6 @@ class MatrixState extends State<Matrix> {
|
||||
}
|
||||
|
||||
void initMatrix() {
|
||||
Logs().level = Level.verbose;
|
||||
LogConsole.init();
|
||||
clientName =
|
||||
'${AppConfig.applicationName} ${kIsWeb ? 'Web' : Platform.operatingSystem}';
|
||||
@ -442,13 +441,9 @@ class MatrixState extends State<Matrix> {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return LogConsoleOnShake(
|
||||
dark: true,
|
||||
debugOnly: false,
|
||||
child: _InheritedMatrix(
|
||||
data: this,
|
||||
child: widget.child,
|
||||
),
|
||||
return _InheritedMatrix(
|
||||
data: this,
|
||||
child: widget.child,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@ -603,6 +603,7 @@ class _SettingsState extends State<Settings> {
|
||||
context,
|
||||
LogConsole(
|
||||
showCloseButton: true,
|
||||
dark: true,
|
||||
),
|
||||
),
|
||||
),
|
||||
|
Loading…
Reference in New Issue
Block a user