Index: shared/scripts/configuration/config.py =================================================================== diff -u -rac0278473d801a0c28adfbeb4b55fedcbd4cc8d2 -ra9d167d94c04e2ffed88e81820ed307fbde2007b --- shared/scripts/configuration/config.py (.../config.py) (revision ac0278473d801a0c28adfbeb4b55fedcbd4cc8d2) +++ shared/scripts/configuration/config.py (.../config.py) (revision a9d167d94c04e2ffed88e81820ed307fbde2007b) @@ -39,6 +39,9 @@ INP_BUF_FILE_LOCATION = "".join([str(HOME_DIR_PATH),'/Desktop/sd-card/cloudsync/']) CLOUD_CREDENTIALS_LOCATION = "".join([str(HOME_DIR_PATH)+'/Desktop/cloudsync/credentials']) +#ui_logs +LOG_LOCATION = "".join([str(HOME_DIR_PATH),'/Desktop/sd-card/log/']) + PEM_FILES = ['1.pem', '2.pem', '3.pem' ] #standby mode Index: shared/scripts/configuration/utility.py =================================================================== diff -u -rac0278473d801a0c28adfbeb4b55fedcbd4cc8d2 -ra9d167d94c04e2ffed88e81820ed307fbde2007b --- shared/scripts/configuration/utility.py (.../utility.py) (revision ac0278473d801a0c28adfbeb4b55fedcbd4cc8d2) +++ shared/scripts/configuration/utility.py (.../utility.py) (revision a9d167d94c04e2ffed88e81820ed307fbde2007b) @@ -720,7 +720,7 @@ """ try: current_date = get_current_date_and_time(date_format = "%Y_%m_%d") - latest_file = '/home/denali/Desktop/sd-card/log/'+current_date+'_denaliSquish.log' + latest_file = config.LOG_LOCATION + current_date + '_denaliSquish.log' return latest_file except: return False