Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ public static DBInfo parseDBInfoFromConnection(final Connection connection) {
clientInfo = connection.getClientInfo();
} catch (final Throwable ex) {
// getClientInfo is likely not allowed, we can still extract info from the url alone
log.debug("Could not get client info from DB", ex);
log.debug(LogCollector.EXCLUDE_TELEMETRY, "Could not get client info from DB", ex);
}
dbInfo = JDBCConnectionUrlParser.extractDBInfo(url, clientInfo);
} else {
Expand Down