log4j日志生成问题

log4j每小时自动生成日志,如果没有访问就不会生成,而是存在最后的日志中。

方法是每小时用shell访问一次,然后将该条记录删除。

shell如下:

#!/bin/sh

exportLANG=ja_JP.UTF-8

echo$LANG

#当前日期

formatday=`date--date="1hourago"+%Y-%m-%d-%H`

#日志根目录

local_log_root='/home/log'

#日志名

gett_file='GetLogger.log'

gett_file_tmp='GetLogger_tmp.log'

#统计时间段可设定

if[$1];then

formatday=$1

fi

echo$formatday

#getlog

if[-s$local_log_root'/'$gett_file'.'$formatday];then

echo'Getlogger.logPresence'

else

#访问的地址

wget'http://localhost:8080/service/getinfo.do?objtype=999999'

echo'wgetgetinfo'

fi

if[-s$local_log_root'/'$gett_file'.'$formatday];then

ifgrepobjtype=yicha$local_log_root'/'$gett_file'.'$formatday

then

grep-vobjtype=999999$local_log_root'/'$gett_file'.'$formatday>$local_log_root'/'$gett_file_tmp

cat$local_log_root'/'$gett_file_tmp>$local_log_root'/'$gett_file'.'$formatday

fi

fi

相关推荐