summaryrefslogtreecommitdiff
path: root/lib/trace/log/logger.ts
diff options
context:
space:
mode:
Diffstat (limited to 'lib/trace/log/logger.ts')
-rw-r--r--lib/trace/log/logger.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/trace/log/logger.ts b/lib/trace/log/logger.ts
new file mode 100644
index 0000000..37a7e3f
--- /dev/null
+++ b/lib/trace/log/logger.ts
@@ -0,0 +1,5 @@
+import { LogLevel } from './level';
+
+export interface ILogger {
+ readonly log: (level: LogLevel, ...args: string[]) => void;
+}