API
Exported types
Shared surface on both modules except
Init and Ping.Luau
export type LogLevel = "info" | "warn" | "error"
export type LogEnvironment = "server" | "client"
export type LogPayload = { [string]: any }
export type LogOrigin = {
script: string?,
line: number?,
name: string?,
traceback: string?,
errorMessage: string?,
errorType: string?,
}
export type FluxLevelMap = {
info: LogLevel,
warn: LogLevel,
error: LogLevel,
}