Merging NETNS platform
[nepi.git] / src / nepi / __init__.py
index c8ae48c..c307144 100644 (file)
@@ -23,7 +23,6 @@ import traceback
 
 LOGLEVEL = os.environ.get("NEPI_LOGLEVEL", "INFO").upper()
 LOGLEVEL = getattr(logging, LOGLEVEL)
-#FORMAT = "%(asctime)s %(name)-12s %(levelname)-8s %(message)s"
 FORMAT = "%(asctime)s %(name)s %(levelname)-4s %(message)s"
 
 # NEPI_LOG variable contains space separated components 
@@ -48,3 +47,10 @@ else:
     # components
     logging.basicConfig(format = FORMAT, level = LOGLEVEL)
 
+
+# Add RMs to ResourceFactory. Use NEPI_SEARCH_PATH to 
+# override the default path to search for RMs
+from nepi.execution.resource import populate_factory
+populate_factory()
+
+