Skip to content

Commit 6142d6e

Browse files
committed
add comment
1 parent 8fb5e7e commit 6142d6e

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

java-bigquery/google-cloud-bigquery-jdbc/src/main/java/com/google/cloud/bigquery/jdbc/BigQueryJdbcRootLogger.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,10 @@ public String format(LogRecord record) {
104104
String sourceClassName = record.getLoggerName();
105105
String sourceMethodName = record.getSourceMethodName();
106106

107+
// Expected log format: yyyy-MM-dd HH:mm:ss.SSS LEVEL PID --- [THREAD] CLASS METHOD: MESSAGE
108+
// Example: 2026-04-22 10:16:00.123 INFO 12345 --- [main ]
109+
// com.google.cloud.bigquery.jdbc.BigQueryConnection connect : Connection
110+
// successful
107111
StringBuilder sb = new StringBuilder(256);
108112
sb.append(date)
109113
.append(" ")

0 commit comments

Comments
 (0)