mirror of
https://github.com/Sonarr/Sonarr
synced 2026-05-09 05:40:53 +02:00
18 lines
284 B
TypeScript
18 lines
284 B
TypeScript
import ModelBase from 'App/ModelBase';
|
|
|
|
export type LogEventLevel =
|
|
| 'trace'
|
|
| 'debug'
|
|
| 'info'
|
|
| 'warn'
|
|
| 'error'
|
|
| 'fatal';
|
|
|
|
interface LogEvent extends ModelBase {
|
|
time: string;
|
|
level: LogEventLevel;
|
|
logger: string;
|
|
message: string;
|
|
}
|
|
|
|
export default LogEvent;
|