mirror of https://github.com/zulip/zulip.git
logging: Show timestamp in UTC in non-django production scripts.
Done in pair programming with @aero31aero. Fixes #9678.
This commit is contained in:
parent
920ef2b7f7
commit
0e2322a322
|
@ -8,10 +8,12 @@ import sys
|
|||
import logging
|
||||
import dateutil.parser
|
||||
import pytz
|
||||
import time
|
||||
from datetime import datetime, timedelta
|
||||
if False:
|
||||
from typing import Dict, List
|
||||
|
||||
logging.Formatter.converter = time.gmtime
|
||||
logging.basicConfig(format="%(asctime)s %(levelname)s: %(message)s")
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
|
|
@ -52,6 +52,7 @@ def am_master(cursor):
|
|||
cursor.execute("SELECT pg_is_in_recovery()")
|
||||
return not cursor.fetchall()[0][0]
|
||||
|
||||
logging.Formatter.converter = time.gmtime
|
||||
logging.basicConfig(format="%(asctime)s %(levelname)s: %(message)s")
|
||||
logger = logging.getLogger("process_fts_updates")
|
||||
logger.setLevel(logging.DEBUG)
|
||||
|
|
|
@ -4,6 +4,7 @@ import shutil
|
|||
import sys
|
||||
import subprocess
|
||||
import logging
|
||||
import time
|
||||
|
||||
TARBALL_ARCHIVE_PATH = "/home/zulip/archives"
|
||||
os.environ["PYTHONUNBUFFERED"] = "y"
|
||||
|
@ -12,6 +13,7 @@ sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..'))
|
|||
from scripts.lib.zulip_tools import DEPLOYMENTS_DIR, FAIL, WARNING, ENDC, \
|
||||
su_to_zulip, get_deployment_lock, release_deployment_lock
|
||||
|
||||
logging.Formatter.converter = time.gmtime
|
||||
logging.basicConfig(format="%(asctime)s upgrade-zulip: %(message)s",
|
||||
level=logging.INFO)
|
||||
|
||||
|
|
|
@ -9,6 +9,7 @@ import subprocess
|
|||
import os
|
||||
import sys
|
||||
import logging
|
||||
import time
|
||||
|
||||
os.environ["PYTHONUNBUFFERED"] = "y"
|
||||
|
||||
|
@ -20,6 +21,7 @@ os.environ["LANGUAGE"] = "en_US.UTF-8"
|
|||
sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..'))
|
||||
from scripts.lib.zulip_tools import DEPLOYMENTS_DIR, FAIL, WARNING, ENDC, su_to_zulip
|
||||
|
||||
logging.Formatter.converter = time.gmtime
|
||||
logging.basicConfig(format="%(asctime)s upgrade-zulip-stage-2: %(message)s",
|
||||
level=logging.INFO)
|
||||
|
||||
|
|
|
@ -9,6 +9,7 @@ import time
|
|||
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
||||
from scripts.lib.zulip_tools import ENDC, OKGREEN, DEPLOYMENTS_DIR
|
||||
|
||||
logging.Formatter.converter = time.gmtime
|
||||
logging.basicConfig(format="%(asctime)s restart-server: %(message)s",
|
||||
level=logging.INFO)
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@ import configparser
|
|||
import sys
|
||||
import subprocess
|
||||
import logging
|
||||
import time
|
||||
|
||||
config_file = configparser.RawConfigParser()
|
||||
config_file.read("/etc/zulip/zulip.conf")
|
||||
|
@ -24,6 +25,7 @@ sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
|||
from scripts.lib.zulip_tools import DEPLOYMENTS_DIR, FAIL, WARNING, ENDC, make_deploy_path, \
|
||||
get_deployment_lock, release_deployment_lock, su_to_zulip
|
||||
|
||||
logging.Formatter.converter = time.gmtime
|
||||
logging.basicConfig(format="%(asctime)s upgrade-zulip-from-git: %(message)s",
|
||||
level=logging.INFO)
|
||||
|
||||
|
|
|
@ -465,6 +465,8 @@ def clear_scheduled_emails(user_id: int, email_type: Optional[int]=None) -> None
|
|||
|
||||
def log_digest_event(msg: str) -> None:
|
||||
import logging
|
||||
import time
|
||||
logging.Formatter.converter = time.gmtime
|
||||
logging.basicConfig(filename=settings.DIGEST_LOG_PATH, level=logging.INFO)
|
||||
logging.info(msg)
|
||||
|
||||
|
|
Loading…
Reference in New Issue