Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2014-12-04 00:53:15 +0300
committermattab <matthieu.aubry@gmail.com>2014-12-04 00:54:33 +0300
commit150072c14bd269a3a44ac326135b9f0e114019d5 (patch)
treeff105b2729a9349abc6a1241276ec0b31cd29fee /misc
parentff70822262ab5d1c587931f94912cf98ff69e24a (diff)
More clear output in case one log file could not be found
(cherry picked from commit c824a2e)
Diffstat (limited to 'misc')
-rwxr-xr-xmisc/log-analytics/import_logs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/log-analytics/import_logs.py b/misc/log-analytics/import_logs.py
index 6d94b6d122..7b46ea3e11 100755
--- a/misc/log-analytics/import_logs.py
+++ b/misc/log-analytics/import_logs.py
@@ -1539,7 +1539,7 @@ class Parser(object):
file = sys.stdin
else:
if not os.path.exists(filename):
- print >> sys.stderr, 'File %s does not exist' % filename
+ print >> sys.stderr, "\n=====> Warning: File %s does not exist <=====" % filename
return
else:
if filename.endswith('.bz2'):