Unbind requests originating from the HTTP Connection Handler always do not logged as internal operations.
SdkConnectionAdapter.java:
In close(), marked the UnbindOperationBasis as being an internal/inner operation.
| | |
| | | if (authInfo != null && authInfo.isAuthenticated()) |
| | | { |
| | | final int messageID = nextMessageID.getAndIncrement(); |
| | | UnbindOperationBasis operation = |
| | | final UnbindOperationBasis operation = |
| | | new UnbindOperationBasis(clientConnection, messageID, messageID, |
| | | to(request.getControls())); |
| | | operation.setInnerOperation(this.clientConnection.isInnerConnection()); |
| | | |
| | | // run synchronous |
| | | operation.run(); |