diff --git a/src/main.ts b/src/main.ts index 0f3ce84..877401a 100644 --- a/src/main.ts +++ b/src/main.ts @@ -1,4 +1,4 @@ -import { ErrorMapper } from "./utils/ErrorMapper"; +import { ErrorMapper } from "utils/ErrorMapper"; export function loop() { try { @@ -11,6 +11,6 @@ export function loop() { console.log(`Current tick is ${Game.time}`); } catch (e) { - console.error(ErrorMapper.sourceMappedStackTrace(e)); + console.log(ErrorMapper.sourceMappedStackTrace(e)); } }