2bc511c69f
Initial commit for orm_client by adding the codebase. Change-Id: I24f17561e6a426e6af9dbbe04e4a66599344d265
11 lines
227 B
Python
11 lines
227 B
Python
import logging
|
|
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
def init_log():
|
|
logging.basicConfig(format='%(asctime)s:%(levelname)s:%(message)s',
|
|
level=logging.DEBUG)
|
|
logging.info("logger set")
|