commit 35fb3083162bf7d3f10f722af76f97b5d6764ec5
parent e149b7bb1b024765b5ad59c7b3929b3e6de0e9c8
Author: ng0 <ng0@n0.is>
Date: Fri, 4 Oct 2019 13:44:27 +0000
should print debug
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.py b/configure.py
@@ -68,7 +68,7 @@ def _read_prefix():
myprefix = args.prefix
yarnexe = args.yarn
if 'DEBUG' in os.environ:
- repr(myprefix)
+ logger.debug('%s', repr(myprefix))
# if args.prefix is not None and os.path.isdir(myprefix) is True:
if args.prefix and os.path.isdir(myprefix) is True:
return [myprefix, yarnexe];