Fix change in logging levels

This commit is contained in:
Lea Anthony
2020-10-13 07:49:47 +11:00
parent 51678afdc7
commit ff5e2862b8
6 changed files with 15 additions and 15 deletions

View File

@@ -8,11 +8,11 @@ interface Store {
}
interface Level {
TRACE: 0,
DEBUG: 1,
INFO: 2,
WARNING: 3,
ERROR: 4,
TRACE: 1,
DEBUG: 2,
INFO: 3,
WARNING: 4,
ERROR: 5,
};
declare const wailsapp__runtime: {