Remove chatty log lines

This commit is contained in:
Arik Fraimovich
2017-05-22 14:17:27 +03:00
parent e85e962466
commit f65b3223f4
3 changed files with 1 additions and 6 deletions

View File

@@ -54,8 +54,6 @@
- Fix: don't remove locks for queries with task status of PENDING.
- Only split columns with __/:: that end with filter/MultiFilter.
### Other
## v1.0.3 - 2017-04-18
### Fixed

View File

@@ -18,7 +18,6 @@ try:
import httplib2
enabled = True
except ImportError as e:
logger.info(str(e))
enabled = False

View File

@@ -9,10 +9,8 @@ logger = logging.getLogger(__name__)
try:
from memsql.common import database
enabled = True
except ImportError, e:
logger.warning(e)
except ImportError:
enabled = False
COLUMN_NAME = 0