elharo opened a new issue, #1989:
URL: https://github.com/apache/maven-resolver/issues/1989
**Affected version:** HEAD
**File:**
`maven-resolver-named-locks-ipc/src/main/java/org/eclipse/aether/named/ipc/IpcServer.java:196`
```java
private static void error(String msg, Throwable t) {
System.out.println("[ipc] [error] " + msg);
t.printStackTrace(System.out);
}
```
All errors in the IPC server go to stdout instead of a proper logging
framework (SLF4J). In a production Maven build, these messages are invisible or
interleaved with build output. Same issue for `debug()` (line 184) and `info()`
(line 190) in the same file.
Originally reported in #1944.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]