|
export interface DebugWarning { |
|
id: string; |
|
message: string; |
|
timestamp: string; |
|
code: string; |
|
} |
|
|
|
export interface DebugError { |
|
id: string; |
|
message: string; |
|
timestamp: string; |
|
stack?: string; |
|
} |
|
|
|
export interface DebugStatus { |
|
warnings: DebugWarning[]; |
|
errors: DebugError[]; |
|
lastChecked: string; |
|
} |
|
|
|
export interface DebugIssue { |
|
id: string; |
|
type: 'warning' | 'error'; |
|
message: string; |
|
} |
|
|
|
export const getDebugStatus = async (): Promise<DebugStatus> => { |
|
|
|
|
|
|
|
|
|
return { |
|
warnings: [ |
|
{ |
|
id: 'warn-1', |
|
message: 'High memory usage detected', |
|
timestamp: new Date().toISOString(), |
|
code: 'MEM_HIGH', |
|
}, |
|
], |
|
errors: [ |
|
{ |
|
id: 'err-1', |
|
message: 'Failed to connect to database', |
|
timestamp: new Date().toISOString(), |
|
stack: 'Error: Connection timeout', |
|
}, |
|
], |
|
lastChecked: new Date().toISOString(), |
|
}; |
|
}; |
|
|
|
export const acknowledgeWarning = async (warningId: string): Promise<void> => { |
|
|
|
|
|
|
|
console.log(`Acknowledging warning ${warningId}`); |
|
}; |
|
|
|
export const acknowledgeError = async (errorId: string): Promise<void> => { |
|
|
|
|
|
|
|
console.log(`Acknowledging error ${errorId}`); |
|
}; |
|
|