コマンドラインから/var/log/syslog
にエントリを書き込むにはどうすればよいですか?
logger
コマンドを使用します。
logger Some message to write
以下を含むいくつかのオプションが利用可能です。
-i Log the process ID in each line
-f Log the contents of a specified file
-n Write to the specified remote syslog server
-p Specify a priority
-t Tag the line with a specified tag
ツールの詳細については、man 1 logger
を参照してください。
または、pythonからsyslog
に書き込むこともできます。
python -c 'import syslog; syslog.syslog("Hello World")'