diff --git a/source/Paths.hx b/source/Paths.hx index 12fb07c..990ce68 100644 --- a/source/Paths.hx +++ b/source/Paths.hx @@ -469,7 +469,7 @@ class Paths localTrackedAssets.push(path); return currentTrackedAssets.get(path); } - trace('oh no its returning null NOOOO'); + Logs.traceNew('oh no its returning null NOOOO', ERROR); return null; } diff --git a/source/codename/backend/system/Logs.hx b/source/codename/backend/system/Logs.hx index a6dbd0e..bd9a026 100644 --- a/source/codename/backend/system/Logs.hx +++ b/source/codename/backend/system/Logs.hx @@ -90,13 +90,6 @@ class Logs } } -enum abstract TraceStyle(String) { - var ALL = 'ALL'; - var WARNINGS_PLUS = 'WARNINGS+'; - var ERRORS_ONLY = 'ERRORS_ONLY'; - var NONE = 'NONE'; -} - enum abstract Level(Int) { var INFO = 0;