summaryrefslogtreecommitdiff
path: root/test/logger.ts
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-02-23 17:27:16 -0700
committerElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-02-23 17:27:16 -0700
commite8e9ee18f29b2557fdc514c4322f5446484c4d58 (patch)
tree1d44fde6ca06f4c377d5cbf3d5ec9b31746ef012 /test/logger.ts
parentd0d6aae1e56428f597f69f5c9cfb261afe671f5d (diff)
downloadcps-interpreter-e8e9ee18f29b2557fdc514c4322f5446484c4d58.tar.gz
cps-interpreter-e8e9ee18f29b2557fdc514c4322f5446484c4d58.zip
simple parser
Diffstat (limited to 'test/logger.ts')
-rw-r--r--test/logger.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/logger.ts b/test/logger.ts
new file mode 100644
index 0000000..2eb523b
--- /dev/null
+++ b/test/logger.ts
@@ -0,0 +1,8 @@
+import { ConsoleTracingLogger } from '@/utils';
+
+export const testingLogger = new ConsoleTracingLogger('test', [
+ 'info',
+ 'warn',
+ 'error',
+ 'debug',
+]);