webalizerのTruncating oversized request fieldに対処する

管理しているサーバのCronのログに以下のようなログが出ていることに気が付きました。

/etc/cron.daily/00webalizer:

Warning: Truncating oversized request field [21]
Warning: Truncating oversized request field [22]
Warning: Truncating oversized request field [23]

いろいろ調べてみると、原因は解析しようとするURLが長い場合に出るらしい。
webalizerの設定ファイル、/etc/webalizer.confの

# ReallyQuiet will supress all messages including errors and
# warnings. Values can be 'yes' or 'no' with 'no' being the
# default. If 'yes' is used here, it cannot be overriden from
# the command line, so use with caution. A value of 'no' has
# no effect.

#ReallyQuiet no

のところを

ReallyQuiet yes

とすると解消します。