UNPKG

amos-ionic-logging

Version:
30 lines (25 loc) 338 B
/** * Log message. */ export interface LogMessage { /** * Time when the log was written. */ timeStamp: Date; /** * Log level. */ level: string; /** * Name of the logger. */ logger: string; /** * Method, in which the message was written. */ methodName: string; /** * Message. */ message: string[]; }