#!/bin/sh

#echo setLog LINK

#set TZ for local time used in log.json
module=/config/configbase/time.json
err="jsonc-error"
timezone=$(/config/bin/json/jsonc_getValue $module tz_value string) 
if [ "$timezone" != "$err" ];then
	export TZ=$timezone
fi

#entry in log.json
/config/bin/setLogDate /config/configbase/log.json link_start

exit 0
