Initial Commit
This commit is contained in:
11
src/Defaults.ts
Normal file
11
src/Defaults.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import {LoggingLevel} from './level/LoggingLevel';
|
||||
|
||||
export default class Defaults {
|
||||
static get loggingLevel(): LoggingLevel {
|
||||
return LoggingLevel.Info;
|
||||
}
|
||||
|
||||
private constructor() {
|
||||
throw new Error('Defaults is a static class that may not be instantiated');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user