change wolfSSL logging cb to stderr

pull/269/head
Ruby Martin 2025-05-21 12:00:42 -06:00
parent a306dfff0e
commit d8458bce6b
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ class WolfSSLNativeLoggingCallback implements WolfSSLLoggingCallback
{
public synchronized void loggingCallback(int logLevel, String logMessage) {
System.out.println(new Timestamp(new java.util.Date().getTime()) +
System.err.println(new Timestamp(new java.util.Date().getTime()) +
" [wolfSSL: TID " +
Thread.currentThread().getId() +
"] " + logMessage);