Skip to content

fix: don't override the global logging config #138

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Oct 26, 2023
3 changes: 0 additions & 3 deletions bigframes/clients.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@
from google.cloud import bigquery_connection_v1, resourcemanager_v3
from google.iam.v1 import iam_policy_pb2, policy_pb2

logging.basicConfig(
level=logging.INFO, format="[%(levelname)s][%(asctime)s][%(name)s] %(message)s"
)
logger = logging.getLogger(__name__)


Expand Down
5 changes: 0 additions & 5 deletions bigframes/remote_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,6 @@
from bigframes import clients
import bigframes.constants as constants

# TODO(shobs): Change the min log level to INFO after the development stabilizes
# before June 2023
logging.basicConfig(
level=logging.INFO, format="[%(levelname)s][%(asctime)s][%(name)s] %(message)s"
)
logger = logging.getLogger(__name__)

# Protocol version 4 is available in python version 3.4 and above
Expand Down