ionic-logging-service
Version:
Logging functionalities for apps built with Ionic framework
26 lines (25 loc) • 391 B
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[];
}