summaryrefslogtreecommitdiffstats
path: root/glances/amps
diff options
context:
space:
mode:
authornicolargo <nicolas@nicolargo.com>2018-09-04 23:15:30 +0200
committernicolargo <nicolas@nicolargo.com>2018-09-04 23:15:30 +0200
commitccd83bf1ff61370ffb24edb3f31f1894dea8c160 (patch)
treea0faefe88392be5cc334b24791e7a3d3eaeb482f /glances/amps
parent7903295f2abfd7e19c3902e427882065d300f08a (diff)
AMPs error if no output are provided by the system call #1314
Diffstat (limited to 'glances/amps')
-rw-r--r--glances/amps/glances_default.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/glances/amps/glances_default.py b/glances/amps/glances_default.py
index ea3e9879..5466f6fb 100644
--- a/glances/amps/glances_default.py
+++ b/glances/amps/glances_default.py
@@ -59,7 +59,7 @@ class Amp(GlancesAmp):
def update(self, process_list):
"""Update the AMP"""
# Get the systemctl status
- logger.debug('{}: Update stats using service {}'.format(self.NAME, self.get('service_cmd')))
+ logger.debug('{}: Update AMP stats using service {}'.format(self.NAME, self.get('service_cmd')))
try:
res = self.get('command')
except OSError as e: