@google-cloud/bigquery
Version:
Google BigQuery Client Library for Node.js
16 lines (15 loc) • 490 B
TypeScript
/**
* Log function to use for debug output. By default, we don't perform any
* logging.
*
* @private
* @internal
*/
export declare function logger(source: string, msg: string, ...otherArgs: any[]): void;
/**
* Sets or disables the log function for all active BigQuery instances.
*
* @param logger A log function that takes a message (such as `console.log`) or
* `null` to turn off logging.
*/
export declare function setLogFunction(logger: ((msg: string) => void) | null): void;