2021-05-08 20:18:44 +00:00
|
|
|
import { LoggingBase } from "./base.js";
|
|
|
|
export { LoggingBase } from "./base.js";
|
2020-08-26 09:55:57 +00:00
|
|
|
export { ConsoleAdapter } from "./consolewriter.js";
|
2021-05-08 19:47:00 +00:00
|
|
|
export { ILoggingOptions, INativeFunctions } from "./base.js";
|
|
|
|
|
2020-04-09 15:50:30 +00:00
|
|
|
export {
|
|
|
|
Adapter,
|
|
|
|
LoggingTypes,
|
|
|
|
Message,
|
|
|
|
FormatConfig,
|
|
|
|
DefaultFormatConfig as DefaultColorMap,
|
2021-05-08 19:47:00 +00:00
|
|
|
IColors as Colors,
|
2020-04-09 15:50:30 +00:00
|
|
|
Format,
|
|
|
|
TerminalFormats,
|
2021-05-08 19:47:00 +00:00
|
|
|
Formatted,
|
|
|
|
IFormatted,
|
2021-05-08 20:24:00 +00:00
|
|
|
ILoggingInterface,
|
|
|
|
ILoggingTimer,
|
2020-08-26 09:55:57 +00:00
|
|
|
} from "./types.js";
|
2019-04-05 02:22:52 +00:00
|
|
|
|
2021-05-08 20:18:44 +00:00
|
|
|
const Logging = new LoggingBase();
|
2019-04-01 03:35:23 +00:00
|
|
|
|
|
|
|
export default Logging;
|