aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--changes/bug330053
-rw-r--r--src/feature/client/transports.c4
2 files changed, 6 insertions, 1 deletions
diff --git a/changes/bug33005 b/changes/bug33005
new file mode 100644
index 0000000000..30a8d01bb3
--- /dev/null
+++ b/changes/bug33005
@@ -0,0 +1,3 @@
+ o Minor bugfixes (pluggable transports):
+ - Lower the log level of standard error messages from a PT from warning to
+ info. Fixes bug 33005; bugfix on 0.4.0.1-alpha.
diff --git a/src/feature/client/transports.c b/src/feature/client/transports.c
index 68691ef512..a8ea9781a4 100644
--- a/src/feature/client/transports.c
+++ b/src/feature/client/transports.c
@@ -1858,7 +1858,9 @@ managed_proxy_stderr_callback(process_t *process,
if (BUG(mp == NULL))
return;
- log_warn(LD_PT, "Managed proxy at '%s' reported: %s", mp->argv[0], line);
+ log_info(LD_PT,
+ "Managed proxy at '%s' reported via standard error: %s",
+ mp->argv[0], line);
}
/** Callback function that is called when our PT process terminates. The