summaryrefslogtreecommitdiff
path: root/dotbot/plugins/create.py
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2020-11-15 15:07:30 +0100
committerAnton Khirnov <anton@khirnov.net>2020-11-15 15:07:30 +0100
commit4d5c7f992a7015f6c5e6d0051057120b8f0c382a (patch)
tree4ba2455c631ad9ca1db1c07bd58cd89be35ba2f7 /dotbot/plugins/create.py
parent5294594f5aa9c3affd0d656ba6843c1c0b0bce60 (diff)
messenger: rename lowinfo to verbose
This is more standard terminology.
Diffstat (limited to 'dotbot/plugins/create.py')
-rw-r--r--dotbot/plugins/create.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/dotbot/plugins/create.py b/dotbot/plugins/create.py
index 015645a..eee6e17 100644
--- a/dotbot/plugins/create.py
+++ b/dotbot/plugins/create.py
@@ -40,11 +40,11 @@ class Create(dotbot.Plugin):
if not self._exists(path):
self._log.debug('Trying to create path %s' % path)
try:
- self._log.lowinfo('Creating path %s' % path)
+ self._log.verbose('Creating path %s' % path)
os.makedirs(path)
except OSError:
self._log.warning('Failed to create path %s' % path)
success = False
else:
- self._log.lowinfo('Path exists %s' % path)
+ self._log.verbose('Path exists %s' % path)
return success