Skip to content

Commit 91fe032

Browse files
committedJul 25, 2023
8312818: Incorrect format specifier in a HttpClient log message
Reviewed-by: djelinski
1 parent bd09880 commit 91fe032

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/java.net.http/share/classes/jdk/internal/net/http/HttpClientImpl.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1525,7 +1525,7 @@ void register(AsyncEvent e) throws ClosedChannelException {
15251525
interestOps |= newOps;
15261526
pending.add(e);
15271527
if (debug.on())
1528-
debug.log("Registering %s for %d (%s)",
1528+
debug.log("Registering %s for %s (%s)",
15291529
e, Utils.describeOps(newOps), reRegister);
15301530
if (reRegister) {
15311531
// first time registration happens here also

0 commit comments

Comments
 (0)
Please sign in to comment.