summaryrefslogtreecommitdiff
path: root/Homework/cs5260/shared/log/TracingLogger.ts
blob: 4765480c0f1e570407b2f5ccf175afb986fd39d0 (plain) (blame)
1
2
3
4
5
6
7
export interface TracingLogger {
  info(log: string): void;
  warn(log: string): void;
  error(log: string): void;

  createChild(prefix: string): TracingLogger;
}