We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0eef0a commit 3559f5bCopy full SHA for 3559f5b
bigquery/client.py
@@ -1,6 +1,6 @@
1
import calendar
2
import json
3
-from logging import getLogger
+from logging import getLogger, NullHandler
4
from collections import defaultdict
5
from datetime import datetime, timedelta
6
from hashlib import sha256
@@ -47,6 +47,7 @@
47
JOB_DESTINATION_FORMAT_CSV = JOB_FORMAT_CSV
48
49
logger = getLogger(__name__)
50
+logger.addHandler(logging.NullHandler())
51
52
53
def get_client(project_id=None, credentials=None,
0 commit comments