mirror of
https://gitlab.com/veilid/veilid.git
synced 2025-08-09 15:12:50 -04:00
fixes
This commit is contained in:
parent
b13f8947df
commit
72b03939ef
10 changed files with 99 additions and 51 deletions
|
@ -11,7 +11,7 @@ import 'package:loggy/loggy.dart';
|
|||
import 'config.dart';
|
||||
|
||||
// Loggy tools
|
||||
const LogLevel traceLevel = LogLevel('trace', 1);
|
||||
const LogLevel traceLevel = LogLevel('Trace', 1);
|
||||
|
||||
class ConsolePrinter extends LoggyPrinter {
|
||||
ConsolePrinter(this.childPrinter) : super();
|
||||
|
@ -226,8 +226,9 @@ class _MyAppState extends State<MyApp> with UiLoggy {
|
|||
onPressed: _updateStream != null
|
||||
? null
|
||||
: () async {
|
||||
var updateStream = Veilid.instance.startupVeilidCore(
|
||||
await getDefaultVeilidConfig());
|
||||
var updateStream = await Veilid.instance
|
||||
.startupVeilidCore(
|
||||
await getDefaultVeilidConfig());
|
||||
setState(() {
|
||||
_updateStream = updateStream;
|
||||
_updateProcessor = processUpdates();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue