LOG_ERR is for when you're planning to die.

svn:r4087
This commit is contained in:
Roger Dingledine 2005-04-23 14:35:13 +00:00
parent 5827e2e216
commit 54fd9df23f

View File

@ -850,8 +850,8 @@ void _check_no_tls_errors(const char *fname, int line)
{
if (ERR_peek_error() == 0)
return;
log_fn(LOG_ERR, "Unhandled OpenSSL errors found at %s:%d: ",
log_fn(LOG_WARN, "Unhandled OpenSSL errors found at %s:%d: ",
fname, line);
tls_log_errors(LOG_ERR, NULL);
tls_log_errors(LOG_WARN, NULL);
}