aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/unix/pcap2cinit.c
diff options
context:
space:
mode:
authorFlorin Coras <fcoras@cisco.com>2018-09-21 17:55:04 -0700
committerDave Barach <openvpp@barachs.net>2018-09-22 18:58:13 +0000
commit742582f4156b249b5a4f60070ae6491dd9b6e7c0 (patch)
tree8375af71347bbd9ed5af22488dd76addb361ae7d /src/vnet/unix/pcap2cinit.c
parentb74d99c8f36db6e23b0dbf9ec2dc9d8a05a7ac26 (diff)
vcl: remove vcl_event
Change-Id: I0f805ae47f6e9465070a54d85f164bc74877af01 Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/vnet/unix/pcap2cinit.c')
0 files changed, 0 insertions, 0 deletions
.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
import sys
import os
import logging


# def setup_custom_logger(name, log_path = None):
#     logging.basicConfig(level   = logging.INFO, 
#                         format  = '%(asctime)s %(name)-10s %(module)-20s %(levelname)-8s %(message)s',
#                         datefmt = '%m-%d %H:%M')


def setup_custom_logger(name, log_path = None):
    # first make sure path availabe
    if log_path is None:
        log_path = os.getcwd()+'/trex_log.log'
    else:
        directory = os.path.dirname(log_path)
        if not os.path.exists(directory):
            os.makedirs(directory)
    logging.basicConfig(level   = logging.DEBUG, 
                        format  = '%(asctime)s %(name)-10s %(module)-20s %(levelname)-8s %(message)s',
                        datefmt = '%m-%d %H:%M',
                        filename= log_path, 
                        filemode= 'w')

    # define a Handler which writes INFO messages or higher to the sys.stderr
    consoleLogger = logging.StreamHandler()
    consoleLogger.setLevel(logging.ERROR)
    # set a format which is simpler for console use
    formatter = logging.Formatter('%(name)-12s: %(levelname)-8s %(message)s')
    # tell the handler to use this format
    consoleLogger.setFormatter(formatter)

    # add the handler to the logger
    logging.getLogger(name).addHandler(consoleLogger)