Merge branch 'tor-github/pr/1677'

This commit is contained in:
David Goulet 2020-01-22 14:32:30 -05:00
commit 21d0d81d82
2 changed files with 6 additions and 1 deletions

3
changes/bug33005 Normal file
View File

@ -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.

View File

@ -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