src/modules/logging/entities/logging.entity.intf.ts
The StarkLogging entity to be kept in the application state
Properties |
| applicationId |
applicationId:
|
Type : string
|
|
The id of the application |
| messages |
messages:
|
Type : StarkLogMessage[]
|
|
The StarkLogMessage objects being logged |
| uuid |
uuid:
|
Type : string
|
|
The |
import { StarkLogMessage } from "./log-message.entity.intf";
/**
* The StarkLogging entity to be kept in the application state
*/
export interface StarkLogging {
/**
* The `uuid` of the entity
*/
uuid: string;
/**
* The id of the application
*/
applicationId: string;
/**
* The {@link StarkLogMessage} objects being logged
*/
messages: StarkLogMessage[];
}