Skip to content

Commit

Permalink
remove unnecessary logging
Browse files Browse the repository at this point in the history
  • Loading branch information
jiakf committed Jun 20, 2024
1 parent 50760bd commit 9bd5e10
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions gdc_client/parcel/portability.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
from termcolor import colored as _colored
import logging

logger = logging.getLogger(__name__)

OS_WINDOWS = False
OS_LINUX = False
OS_OSX = False
Expand All @@ -26,10 +24,8 @@

# Are we running on windows?
if OS_WINDOWS or OS_OSX:
logger.warning("WINDOWS or OSX detected, using threads.")
from threading import Thread as Process
else:
logger.warning("Using POSIX.")
# Assume a posix system
from multiprocessing import Process

Expand Down

0 comments on commit 9bd5e10

Please sign in to comment.