Adding the ExperimentRunner
[nepi.git] / src / nepi / resources / all / collector.py
index 35660fa..af0811c 100644 (file)
@@ -28,7 +28,7 @@ import tempfile
 
 @clsinit_copy
 class Collector(ResourceManager):
-    """ The collector is reponsible of collecting traces
+    """ The collector entity is reponsible of collecting traces
     of a same type associated to RMs into a local directory.
 
     .. class:: Class Args :
@@ -56,7 +56,7 @@ class Collector(ResourceManager):
                 default = tempfile.gettempdir(),
                 flags = Flags.Design)
 
-        user_run_id = Attribute("useRunId", 
+        use_run_id = Attribute("useRunId", 
                 "If set to True stores traces into a sub directory named after "
                 "the RUN ID assigned by the EC", 
                 type = Types.Bool,
@@ -104,7 +104,7 @@ class Collector(ResourceManager):
             self._store_path = os.path.join(self._store_path, subdir)
         
         msg = "Creating local directory at %s to store %s traces " % (
-            store_dir, trace_name)
+            self._store_path, trace_name)
         self.info(msg)
 
         try: