summaryrefslogtreecommitdiffstats
path: root/glances/plugins/glances_monitor.py
diff options
context:
space:
mode:
Diffstat (limited to 'glances/plugins/glances_monitor.py')
-rw-r--r--glances/plugins/glances_monitor.py11
1 files changed, 3 insertions, 8 deletions
diff --git a/glances/plugins/glances_monitor.py b/glances/plugins/glances_monitor.py
index e8fc2616..6f42f644 100644
--- a/glances/plugins/glances_monitor.py
+++ b/glances/plugins/glances_monitor.py
@@ -20,6 +20,7 @@
"""Monitor plugin."""
# Import Glances lib
+from glances.core.glances_globals import logger
from glances.core.glances_monitor_list import MonitorList as glancesMonitorList
from glances.plugins.glances_plugin import GlancesPlugin
@@ -34,12 +35,6 @@ class Plugin(GlancesPlugin):
# We want to display the stat in the curse interface
self.display_curse = True
- # Set the message position
- # It is NOT the curse position but the Glances column/line
- # Enter -1 to right align
- self.column_curse = 1
- # Enter -1 to diplay bottom
- self.line_curse = 3
# Init stats
self.glances_monitors = None
@@ -47,7 +42,7 @@ class Plugin(GlancesPlugin):
def load_limits(self, config):
"""Load the monitored list from the conf file."""
- # print "DEBUG: Monitor plugin load config file %s" % config
+ logger.debug(_("Monitor plugin configuration detected in the configuration file"))
self.glances_monitors = glancesMonitorList(config)
def update(self):
@@ -93,7 +88,7 @@ class Plugin(GlancesPlugin):
ret = []
# Only process if stats exist and display plugin enable...
- if self.stats == [] or args.disable_process:
+ if self.stats == [] or args.disable_process:
return ret
# Build the string message