Change name of class

This commit is contained in:
Fabian Stamm
2021-05-08 22:18:44 +02:00
parent 357b98c69a
commit 6daf815ea8
4 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,5 @@
import { LoggingBase as LoggingClass } from "./base.js";
export { LoggingBase as Logging } from "./base.js";
import { LoggingBase } from "./base.js";
export { LoggingBase } from "./base.js";
export { ConsoleAdapter } from "./consolewriter.js";
export { ILoggingOptions, INativeFunctions } from "./base.js";
@ -16,6 +16,6 @@ export {
IFormatted,
} from "./types.js";
const Logging = new LoggingClass();
const Logging = new LoggingBase();
export default Logging;