Implemented a real-time console log streaming via WebSocket for debugging purposes. Users can enable console output in settings to view application logs directly in the web interface.

This commit is contained in:
2026-01-14 21:47:17 +01:00
parent e997059e2a
commit 44da16977c
16 changed files with 501 additions and 15 deletions

View File

@@ -462,6 +462,11 @@ button.bg-red-500:hover, button.bg-red-600:hover {
color: rgb(107 114 128);
}
/* Console output text colors */
.text-gray-100 {
color: #f3f4f6;
}
#wsTooltip .border-gray-700 {
border-color: rgb(55 65 81);
}