Merged Develop in timeline branch

This commit is contained in:
ashishj
2022-12-15 17:10:56 +01:00
120 changed files with 2795 additions and 3415 deletions

View File

@@ -1,6 +1,7 @@
const warning = (s: string) => {
// Todo remove debug code
console.error('Log function was called before initialization', s); // eslint-disable-line
// eslint-disable-next-line no-console
console.error('Log function was called before initialization', s);
};
export type LogLevel = 'trace' | 'debug' | 'info' | 'warn' | 'error' | 'fatal';