From 41b940c600381930a221f6479779777b714c7271 Mon Sep 17 00:00:00 2001 From: Ivan Maslov Date: Mon, 15 Feb 2021 09:14:04 +0300 Subject: [PATCH] # Minor name changes in logs --- Sources/pyOpenRPA/Orchestrator/Processor.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Sources/pyOpenRPA/Orchestrator/Processor.py b/Sources/pyOpenRPA/Orchestrator/Processor.py index ceefcc7e..9f99611c 100644 --- a/Sources/pyOpenRPA/Orchestrator/Processor.py +++ b/Sources/pyOpenRPA/Orchestrator/Processor.py @@ -38,7 +38,7 @@ def ActivityListExecute(inGSettings, inActivityList): lResultList = [] # init the result list try: for lActivityItem in inActivityList: # Iterate throught the activity list - if lL: lL.info(f'Processor.ActivityListExecute:: Def:{str(lActivityItem["Def"])}. Parameters are not available to see.') + if lL: lL.info(f'pyOpenRPA Processor.ActivityListExecute:: Def:{str(lActivityItem["Def"])}. Parameters are not available to see.') lDef = None # Def variable if callable(lActivityItem["Def"]): # CHeck if def is callable lDef = lActivityItem["Def"] # Get the def @@ -65,8 +65,8 @@ def ActivityListExecute(inGSettings, inActivityList): lActivityItemResult = lDef(*lActivityItem["ArgList"], **lActivityItem["ArgDict"]) lResultList.append(lActivityItemResult) # return the result except Exception as e: - if lL: lL.exception(f"Processor.ActivityListExecute: Exception in def execution - activity will be ignored.") # Logging + if lL: lL.exception(f"pyOpenRPA Processor.ActivityListExecute: Exception in def execution - activity will be ignored.") # Logging lResultList.append(e) # return the generated exception except Exception as e: - if lL: lL.exception(f"Processor.ActivityListExecute: Exception when initialisation - All activity list will be ignored.") # Logging + if lL: lL.exception(f"pyOpenRPA Processor.ActivityListExecute: Exception when initialisation - All activity list will be ignored.") # Logging return lResultList # return the result list \ No newline at end of file