borcsokj commented on a change in pull request #801: URL: https://github.com/apache/cxf/pull/801#discussion_r637968418
########## File path: rt/features/logging/src/main/java/org/apache/cxf/ext/logging/event/DefaultLogEventMapper.java ########## @@ -320,7 +322,7 @@ public EventType getEventType(Message message) { */ private boolean isRESTFault(Message message) { Object opName = message.getExchange().get("org.apache.cxf.resource.operation.name"); - if (opName == null) { + if (opName == null && !PREFLIGHT_PASSED.equals(message.getExchange().get(CORS_FILTER))) { Review comment: I pushed an update removing CORS filter internals from `DefaultLogEventMapper`, what do you think about it @reta ? -- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org