diff --git a/frontend/src/app/dashboard/page.tsx b/frontend/src/app/dashboard/page.tsx index 9e08e6c..9acbe2d 100644 --- a/frontend/src/app/dashboard/page.tsx +++ b/frontend/src/app/dashboard/page.tsx @@ -25,10 +25,10 @@ const Dashboard = () => { const debugLog = (icon: string, message: string, payload?: unknown) => { if (payload !== undefined) { - console.log(`[Dashboard] ${icon} ${message}`, payload); + console.error(`[Dashboard] ${icon} ${message}`, payload); return; } - console.log(`[Dashboard] ${icon} ${message}`); + console.error(`[Dashboard] ${icon} ${message}`); }; const navigateWithDebug = (target: string, source: string) => {