# use _DEBUG="off" to turn off debug printing
_DEBUG="on"
-if test $# -ne 2; then
- echo "usage: $0 log-folder log-file" 1>&2
+if test $# -ne 3; then
+ echo "usage: $0 client-type log-folder log-file" 1>&2
exit 1
fi
# Read the global configuration variables
source ../ConfigFiles/globalconfig
-# Read scenarion configuration file (CLIENT_TYPE)
-source ${BASE_PATH}/ClientWorkingFolders/TmpLogs/scenario_config
-
# Read client mappings configuration file
source ../ConfigFiles/client_script_mappings
-log_folder=$1
-log_file=$2
+client_type=$1
+log_folder=$2
+log_file=$3
-parse_client_log ${CLIENT_TYPE} ${log_folder} ${log_file}
+parse_client_log ${client_type} ${log_folder} ${log_file}