Improving logging

This commit is contained in:
Fabian
2019-04-04 22:22:52 -04:00
parent 11619948e3
commit 6065c37362
7 changed files with 304 additions and 55 deletions

View File

@ -1,6 +1,20 @@
import { LoggingBase } from "./base";
export { Colors, LoggingBase, LoggingBaseOptions } from "./base";
export { Adapter, LoggingTypes, Message } from "./types";
export { LoggingBase, LoggingBaseOptions, removeColors } from "./base";
export {
Adapter,
LoggingTypes,
Message,
FormatConfig,
FormattedLine,
DefaultFormatConfig as DefaultColorMap,
FormattedText,
Colors,
Format,
FormatTypes,
TerminalFormats
} from "./types";
export { ObservableInterface } from "@hibas123/utils";
export let Logging: LoggingBase = undefined;