diff --git a/Tools/go_web_client/marte2-web-client b/Tools/go_web_client/marte2-web-client index 3467bcc..0ac5c7f 100755 Binary files a/Tools/go_web_client/marte2-web-client and b/Tools/go_web_client/marte2-web-client differ diff --git a/Tools/go_web_client/static/app.js b/Tools/go_web_client/static/app.js index f7df60b..9d028c9 100644 --- a/Tools/go_web_client/static/app.js +++ b/Tools/go_web_client/static/app.js @@ -1189,6 +1189,7 @@ function flushLogs() { function renderLogs() { logDirty = false; const body = document.getElementById('log-body'); + const showService = document.getElementById('lf-service').checked; const showDebug = document.getElementById('lf-debug').checked; const showInfo = document.getElementById('lf-info').checked; const showWarn = document.getElementById('lf-warn').checked; @@ -1197,6 +1198,7 @@ function renderLogs() { const visible = logs.filter(l => { const lv = l.level; + if ((lv==='CMD' || lv==='RESP') && !showService) return false; if (lv==='DEBUG' && !showDebug) return false; if ((lv==='INFO'||lv==='Information') && !showInfo) return false; if ((lv==='WARNING'||lv==='Warning') && !showWarn) return false; diff --git a/Tools/go_web_client/static/index.html b/Tools/go_web_client/static/index.html index 1e2403f..3493bcf 100644 --- a/Tools/go_web_client/static/index.html +++ b/Tools/go_web_client/static/index.html @@ -1,13 +1,13 @@ - - - -MARTe2 Debug Client - - - - - -
- - -
- - -