[TIC-CORE] Logger support and add test-cast for repodata
[archive/20170607/tools/tic-core.git] / tic / utils / log.py
1 #!/usr/bin/python
2 # Copyright (c) 2000 - 2016 Samsung Electronics Co., Ltd. All rights reserved.
3 #
4 # Contact: 
5 # @author Chulwoo Shin <cw1.shin@samsung.com>
6
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 # http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19 # Contributors:
20 # - S-Core Co., Ltd
21
22 import logging.handlers
23 import os
24 import errno
25
26 LOG_FILE_MAX_BYTES=10*1024*1024
27 TIC_LOG_DIR='/var/tmp/tic-core/log'
28
29 def setup(root):
30     logger = logging.getLogger(root)
31     logger.setLevel(logging.DEBUG)
32     
33     formatter = logging.Formatter('%(asctime)s [%(levelname)s][%(filename)s(%(lineno)s)] %(message)s')
34     formatter.datefmt = '%Y-%m-%d %H:%M:%S'
35     
36     mkdir_p(TIC_LOG_DIR)
37     fileHandler = logging.handlers.RotatingFileHandler(os.path.join(TIC_LOG_DIR, 'tic-core.log'), maxBytes=LOG_FILE_MAX_BYTES, backupCount=10)
38     streamHandler = logging.StreamHandler()
39     
40     fileHandler.setFormatter(formatter)
41     streamHandler.setFormatter(formatter)
42     
43     logger.addHandler(fileHandler)
44     logger.addHandler(streamHandler)
45     
46 def mkdir_p(path):
47     try:
48         os.makedirs(path)
49     except OSError as err:
50         if err.errno != errno.EEXIST:
51             raise