2019-04-01 03:35:23 +00:00
|
|
|
import { LoggingBase } from "./base";
|
2019-04-05 13:05:35 +00:00
|
|
|
export { ConsoleAdapter } from "./consolewriter";
|
2019-04-05 02:22:52 +00:00
|
|
|
export {
|
2020-04-09 15:50:30 +00:00
|
|
|
LoggingBase,
|
|
|
|
LoggingBaseOptions,
|
|
|
|
removeColors,
|
|
|
|
withColor,
|
|
|
|
} from "./base";
|
|
|
|
export {
|
|
|
|
Adapter,
|
|
|
|
LoggingTypes,
|
|
|
|
Message,
|
|
|
|
FormatConfig,
|
|
|
|
FormattedLine,
|
|
|
|
DefaultFormatConfig as DefaultColorMap,
|
|
|
|
FormattedText,
|
|
|
|
Colors,
|
|
|
|
Format,
|
|
|
|
FormatTypes,
|
|
|
|
TerminalFormats,
|
2019-04-05 02:22:52 +00:00
|
|
|
} from "./types";
|
|
|
|
|
2019-04-01 03:35:23 +00:00
|
|
|
export { ObservableInterface } from "@hibas123/utils";
|
|
|
|
|
|
|
|
export let Logging: LoggingBase = undefined;
|
|
|
|
Logging = new LoggingBase();
|
|
|
|
export default Logging;
|