@@ -107,10 +107,8 @@ internal final class BigQueryPluginDriver: PluginDatabaseDriver, @unchecked Send
107107 // Auto-select the first available dataset (like PostgreSQL selects "public")
108108 do {
109109 let datasets = try await fetchSchemas ( )
110- Self . logger. info ( " Available datasets: \( datasets, privacy: . public) " )
111110 let nonSystem = datasets. filter { !$0. uppercased ( ) . contains ( " INFORMATION_SCHEMA " ) }
112111 if let firstDataset = nonSystem. first {
113- Self . logger. info ( " Auto-selected dataset: \( firstDataset, privacy: . public) self= \( ObjectIdentifier ( self ) . debugDescription, privacy: . public) " )
114112 lock. withLock { _currentDataset = firstDataset }
115113 }
116114 } catch {
@@ -146,7 +144,6 @@ internal final class BigQueryPluginDriver: PluginDatabaseDriver, @unchecked Send
146144 }
147145
148146 func switchSchema( to schema: String ) async throws {
149- Self . logger. info ( " switchSchema called with: ' \( schema, privacy: . public) ' " )
150147 lock. withLock { _currentDataset = schema }
151148 }
152149
@@ -609,7 +606,6 @@ internal final class BigQueryPluginDriver: PluginDatabaseDriver, @unchecked Send
609606 _columnCache [ " \( ds) . \( table) " ] = columns
610607 return ds
611608 }
612- Self . logger. info ( " buildBrowseQuery: table= \( table, privacy: . public) dataset=' \( dataset, privacy: . public) ' self= \( ObjectIdentifier ( self ) . debugDescription, privacy: . public) " )
613609 return BigQueryQueryBuilder . encodeBrowseQuery (
614610 table: table, dataset: dataset,
615611 sortColumns: sortColumns, limit: limit, offset: offset
@@ -694,7 +690,6 @@ internal final class BigQueryPluginDriver: PluginDatabaseDriver, @unchecked Send
694690 guard let conn = connection else { return nil }
695691
696692 let dataset = lock. withLock { _currentDataset } ?? " "
697- Self . logger. info ( " generateStatements: dataset=' \( dataset, privacy: . public) ' table=' \( table, privacy: . public) ' self= \( ObjectIdentifier ( self ) . debugDescription, privacy: . public) " )
698693
699694 // Block DML on external tables
700695 let tableType : String ? = lock. withLock {
@@ -718,8 +713,6 @@ internal final class BigQueryPluginDriver: PluginDatabaseDriver, @unchecked Send
718713 return columns. map { _ in " STRING " }
719714 }
720715
721- Self . logger. info ( " generateStatements: typeNames= \( typeNames, privacy: . public) " )
722-
723716 let generator = BigQueryStatementGenerator (
724717 projectId: conn. projectId,
725718 dataset: dataset,
0 commit comments