@niledatabase/nile-mcp-server
Version:
Nile MCP Server Implementation
16 lines (15 loc) • 559 B
TypeScript
import 'winston-daily-rotate-file';
export declare const log: {
info: (message: string, data?: any) => void;
error: (message: string, error?: any) => void;
debug: (message: string, data?: any) => void;
api: (method: string, url: string, status: number, data?: any) => void;
sql: (query: string, duration: number, result?: any) => void;
startup: (message: string, data?: any) => void;
mcp: {
in: (message: any) => void;
out: (message: any) => void;
error: (error: any) => void;
};
};
export default log;