Avoid logging csr
Summary: I unintentionally added logging of csr certificates in my previous diff. This diff makes sure we're not logging them anymore. Reviewed By: mweststrate Differential Revision: D31609709 fbshipit-source-id: e43b348dbd62653f8a6e9089930c2a3699b29a12
This commit is contained in:
committed by
Facebook GitHub Bot
parent
1c363cc5db
commit
976e53ff9b
@@ -24,6 +24,7 @@ import {
|
||||
ClientQuery,
|
||||
DeviceOS,
|
||||
} from 'flipper-common';
|
||||
import {cloneClientQuerySafeForLogging} from './Utilities';
|
||||
|
||||
/**
|
||||
* WebSocket-based server.
|
||||
@@ -95,7 +96,7 @@ class ServerWebSocket extends ServerWebSocketBase {
|
||||
}
|
||||
console.info(
|
||||
`[conn] Secure websocket connection attempt: ${clientQuery.app} on ${clientQuery.device_id}. Medium ${clientQuery.medium}. CSR: ${clientQuery.csr_path}`,
|
||||
clientQuery,
|
||||
cloneClientQuerySafeForLogging(clientQuery),
|
||||
);
|
||||
this.listener.onSecureConnectionAttempt(clientQuery);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user