"python-package/vscode:/vscode.git/clone" did not exist on "19512d828d79aab32a970346fea6ae85b78c0653"
Commit d8d01e39 authored by Nikita Titov's avatar Nikita Titov Committed by Tsukasa OMOTO
Browse files

[python] fixed logging during installation (#1828)

parent 8ace7339
...@@ -25,7 +25,7 @@ def find_lib(): ...@@ -25,7 +25,7 @@ def find_lib():
exec(compile(open(libpath_py, "rb").read(), libpath_py, 'exec'), libpath, libpath) exec(compile(open(libpath_py, "rb").read(), libpath_py, 'exec'), libpath, libpath)
LIB_PATH = [os.path.relpath(path, CURRENT_DIR) for path in libpath['find_lib_path']()] LIB_PATH = [os.path.relpath(path, CURRENT_DIR) for path in libpath['find_lib_path']()]
logging.info("Installing lib_lightgbm from: %s" % LIB_PATH) logger.info("Installing lib_lightgbm from: %s" % LIB_PATH)
return LIB_PATH return LIB_PATH
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment