You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
1.1 KiB
Python

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# -*- coding: utf-8 -*-
# @date2023/12/19 17:02
# @AuthorLiuYiJie
# @file log
from nb_log import get_logger
# logger = get_logger('lalala',) # get_logger 只有一个name是必传递的其他的参数不是必传。
# logger = get_logger('lalala',log_filename='lalala.log',formatter_template=5,log_file_handler_type=2) # get_logger有很多其他入参可以自由定制logger。
# logger.debug(f'debug是绿色说明是调试的代码ok ')
# logger.info('info是天蓝色日志正常 ')
# logger.warning('黄色yello有警告了 ')
# logger.error('粉红色说明代码有错误 ')
# logger.critical('血红色,说明发生了严重错误 ')
# print('导入nb_log之后的print是强化版的可点击跳转的')
#
# logger = get_logger('logger_namespace',
# log_filename='namespace_file.log',
# error_log_filename='f4b_error.log')
# logger.debug('这条日志会写到文件中')
# logger.error('这条日志会写到普通文件中,同时会单独写入到错误文件中')
#
# import sys
# print(sys.path[1])