mirror of
https://github.com/ItzCrazyKns/Perplexica.git
synced 2025-06-23 18:28:34 +00:00
- Integrate DeepSeek and LMStudio AI providers - Add message processing utilities for improved handling - Implement reasoning panel for message actions - Add logging functionality to UI - Update configurations and dependencies
14 lines
261 B
TypeScript
14 lines
261 B
TypeScript
const logger = {
|
|
info: (...args: any[]) => {
|
|
console.log('[INFO]', ...args);
|
|
},
|
|
warn: (...args: any[]) => {
|
|
console.warn('[WARN]', ...args);
|
|
},
|
|
error: (...args: any[]) => {
|
|
console.error('[ERROR]', ...args);
|
|
}
|
|
};
|
|
|
|
export default logger;
|