Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/Paths.hx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down
7 changes: 0 additions & 7 deletions source/codename/backend/system/Logs.hx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Loading