diff options
| author | gingerBill <bill@gingerbill.org> | 2020-06-19 11:18:23 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2020-06-19 11:18:23 +0100 |
| commit | 9f596d6f34867de0c9561b98b897f35dc44b80ee (patch) | |
| tree | 44da3e81b230ff4398b4ca76b91db450bf144aee /core/runtime | |
| parent | 2a684830f984f03bc2ff2443923c40a592878508 (diff) | |
Clean up `package log` code
Diffstat (limited to 'core/runtime')
| -rw-r--r-- | core/runtime/core.odin | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/core/runtime/core.odin b/core/runtime/core.odin index 19f2b1146..fd7144d41 100644 --- a/core/runtime/core.odin +++ b/core/runtime/core.odin @@ -264,11 +264,11 @@ Allocator :: struct { // Logging stuff Logger_Level :: enum { - Debug, - Info, - Warning, - Error, - Fatal, + Debug = 0, + Info = 10, + Warning = 20, + Error = 30, + Fatal = 40, } Logger_Option :: enum { |