Skip to content

Commit 9639d56

Browse files
committed
more verbose log message
1 parent f2619e0 commit 9639d56

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

qiita_client/qiita_client.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -863,8 +863,9 @@ def push_file_to_central(self, filepath):
863863
return filepath
864864

865865
elif self._plugincoupling == 'https':
866-
logger.debug('Submitting %s %s to qiita server.' % (
867-
'directory' if os.path.isdir(filepath) else 'file', filepath))
866+
logger.debug('Submitting %s %s to qiita server via %s' % (
867+
'directory' if os.path.isdir(filepath) else 'file', filepath,
868+
self._plugincoupling))
868869

869870
# target path, i.e. without filename
870871
dirpath = os.path.dirname(filepath)

0 commit comments

Comments
 (0)