diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-02-23 17:27:16 -0700 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-02-23 17:27:16 -0700 |
commit | e8e9ee18f29b2557fdc514c4322f5446484c4d58 (patch) | |
tree | 1d44fde6ca06f4c377d5cbf3d5ec9b31746ef012 /test/logger.ts | |
parent | d0d6aae1e56428f597f69f5c9cfb261afe671f5d (diff) | |
download | cps-interpreter-e8e9ee18f29b2557fdc514c4322f5446484c4d58.tar.gz cps-interpreter-e8e9ee18f29b2557fdc514c4322f5446484c4d58.zip |
simple parser
Diffstat (limited to 'test/logger.ts')
-rw-r--r-- | test/logger.ts | 8 |
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', +]); |