HEX
Server: Apache/2.4.65 (Ubuntu)
System: Linux ielts-store-v2 6.8.0-1036-gcp #38~22.04.1-Ubuntu SMP Thu Aug 14 01:19:18 UTC 2025 x86_64
User: root (0)
PHP: 7.2.34-54+ubuntu20.04.1+deb.sury.org+1
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,
Upload Files
File: //snap/google-cloud-cli/current/lib/third_party/containerregistry/tools/logging_setup_.py
# Copyright 2017 Stripe Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#    http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""This package sets up the Python logging system."""

import logging
import sys


# Based on glog.
FORMAT = ('%(shortlevel)s%(asctime)s.%(time_millis)06d %(process_str)s '
          '%(filename)s:%(lineno)d] %(message)s')

# Based on glog.
TIMESTAMP_FORMAT = '%m%d %H:%M:%S'


def DefineCommandLineArgs(argparser):
  argparser.add_argument(
      '--stderrthreshold',
      action='store',
      help=('Write log events at or above this level to stderr.'))


def Init(args=None):
  handler = logging.StreamHandler(stream=sys.stderr)
  handler.setFormatter(Formatter())
  logging.root.addHandler(handler)
  if args is not None:
    if args.stderrthreshold is not None:
      logging.root.setLevel(args.stderrthreshold)


class Formatter(logging.Formatter):

  def __init__(self):
    super(Formatter, self).__init__(fmt=FORMAT, datefmt=TIMESTAMP_FORMAT)

  def format(self, record):
    # Injecting fields into the record seems to be fine, it's how the upstream
    # logging.Formatter adds timestamps and such.
    if record.levelname == 'CRITICAL':
      record.shortlevel = 'F'  # FATAL
    else:
      record.shortlevel = record.levelname[0]
    record.time_millis = (record.created - int(record.created)) * 1000000
    if record.process is None:
      record.process_str = '???????'
    else:
      record.process_str = '% 7d' % (record.process,)
    return super(Formatter, self).format(record)