Skip to content
Snippets Groups Projects
Commit 28423b69 authored by roadscape's avatar roadscape
Browse files

adjust sync log levels

parent aa15d55b
No related branches found
No related tags found
No related merge requests found
......@@ -180,8 +180,8 @@ class Db:
Stats.log_db(sql, perf() - start)
return result
except Exception as e:
log.error("[SQL-ERR] %s in query %s (%s)",
e.__class__.__name__, sql, kwargs)
log.info("[SQL-ERR] %s in query %s (%s)",
e.__class__.__name__, sql, kwargs)
raise e
@staticmethod
......
......@@ -102,14 +102,8 @@ def run_server(conf):
try:
return await hive_api.db_head_state()
except OperationalError as e:
if 'could not connect to server: Connection refused' in str(e):
log.warning("could not get head state (connection refused)")
return None
if 'the database system is shutting down' in str(e):
log.warning("could not get head state (db shutting down)")
return None
if 'terminating connection due to administrator command' in str(e):
log.warning("could not get head state (admin terminated)")
if conf.get('sync_to_s3'):
log.info("could not get head state (%s)", e)
return None
raise e
......
......@@ -61,8 +61,8 @@ class BlockSchedule:
self._last_date = date
else:
self._drift_backward()
log.warning("block %d not available. head:%s drift:%fs",
num, self._head_num, self._drift)
log.info("block %d not available. head:%s drift:%fs",
num, self._head_num, self._drift)
def _check_head_date(self, num, date):
"""Sanity-checking of head block date.
......
......@@ -77,7 +77,7 @@ echo hivemind: starting server
if [[ ! "$SYNC_TO_S3" ]]; then
exec "${POPULATE_CMD}" server
else
exec "${POPULATE_CMD}" server 2>&1&
exec "${POPULATE_CMD}" server --log-level=warning 2>&1&
mkdir -p /etc/service/hivesync
cp /usr/local/bin/hivesync.sh /etc/service/hivesync/run
chmod +x /etc/service/hivesync/run
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment