v0.0.51 - Reduce terminal noise: suppress processes polling logs, remove perf-probe and inject success prints
This commit is contained in:
+5
-1
@@ -3984,7 +3984,11 @@ static void on_sovereign_scheme(WebKitURISchemeRequest *request,
|
||||
* nostr bridge shim calls to avoid terminal spam. */
|
||||
if (strncmp(uri, "sovereign://agents/status", 25) != 0 &&
|
||||
strncmp(uri, "sovereign://agents/messages", 27) != 0 &&
|
||||
strncmp(uri, "sovereign://nostr/", 18) != 0) {
|
||||
strncmp(uri, "sovereign://nostr/", 18) != 0 &&
|
||||
strncmp(uri, "sovereign://processes/list", 25) != 0 &&
|
||||
strncmp(uri, "sovereign://processes/tabs", 25) != 0 &&
|
||||
strncmp(uri, "sovereign://processes/probe-report", 33) != 0 &&
|
||||
strncmp(uri, "sovereign://processes/tab_probe", 30) != 0) {
|
||||
g_print("[bridge] %s\n", uri);
|
||||
}
|
||||
|
||||
|
||||
@@ -148,5 +148,4 @@ void nostr_inject_setup(WebKitWebView *webview) {
|
||||
/* The manager takes ownership of the script. */
|
||||
webkit_user_script_unref(script);
|
||||
|
||||
g_print("[inject] window.nostr shim installed\n");
|
||||
}
|
||||
|
||||
@@ -98,5 +98,4 @@ void perf_probe_setup(WebKitWebView *webview, int tab_index) {
|
||||
webkit_user_script_unref(probe_script);
|
||||
g_free(probe_js);
|
||||
|
||||
g_print("[perf-probe] perf probe installed for tab %d\n", tab_index);
|
||||
}
|
||||
|
||||
+2
-2
@@ -11,9 +11,9 @@
|
||||
#ifndef SOVEREIGN_BROWSER_VERSION_H
|
||||
#define SOVEREIGN_BROWSER_VERSION_H
|
||||
|
||||
#define SB_VERSION "v0.0.50"
|
||||
#define SB_VERSION "v0.0.51"
|
||||
#define SB_VERSION_MAJOR 0
|
||||
#define SB_VERSION_MINOR 0
|
||||
#define SB_VERSION_PATCH 50
|
||||
#define SB_VERSION_PATCH 51
|
||||
|
||||
#endif /* SOVEREIGN_BROWSER_VERSION_H */
|
||||
|
||||
Reference in New Issue
Block a user