Skip to content

Commit 08e6365

Browse files
authored
Merge pull request #10 from fosslight/develop
Change default log level
2 parents 3a22083 + 8ca5c6b commit 08e6365

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
if __name__ == "__main__":
1414
setup(
1515
name='fosslight_util',
16-
version='1.0.7',
16+
version='1.0.8',
1717
package_dir={"": "src"},
1818
packages=find_packages(where='src'),
1919
description='FOSSLight Util',

src/fosslight_util/set_log.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from . import constant as constant
1313

1414

15-
def init_log(log_file, create_file=True, stream_log_level=logging.WARN, file_log_level=logging.INFO):
15+
def init_log(log_file, create_file=True, stream_log_level=logging.INFO, file_log_level=logging.DEBUG):
1616

1717
logger = logging.getLogger(constant.LOGGER_NAME)
1818

0 commit comments

Comments
 (0)