Desktop: Browser console message forwarding (#3193)

* browser console message forwarding

* replace target to make it easy to identify browser console messages

* use warn as per review comment
This commit is contained in:
Timon
2025-09-25 10:42:07 +00:00
committed by GitHub
parent d15f63f4fd
commit b4be616de0
4 changed files with 77 additions and 2 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ fn main() {
// We are in a CEF subprocess
// This will block until the CEF subprocess quits
let error = cef_context_builder.execute_sub_process();
tracing::error!("Cef subprocess failed with error: {error}");
tracing::warn!("Cef subprocess failed with error: {error}");
return;
}