mirror of
https://github.com/labring/FastGPT.git
synced 2025-12-30 18:32:47 +00:00
Some checks failed
Build FastGPT images in Personal warehouse / build-fastgpt-images (push) Has been cancelled
* feat: log store * fix: full text search match query * perf: mongo schema import, Avoid duplicate import
11 lines
141 B
TypeScript
11 lines
141 B
TypeScript
export enum LogLevelEnum {
|
|
debug = 0,
|
|
info = 1,
|
|
warn = 2,
|
|
error = 3
|
|
}
|
|
|
|
export enum LogSignEnum {
|
|
slowOperation = 'slowOperation'
|
|
}
|