amos-ionic-logging
Version:
Components for Ionic logging
30 lines (25 loc) • 338 B
text/typescript
/**
* 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[];
}