In C we log this way:
syslog( LOG_INFO, \"proxying %s\", url );
In Linux how can we check the log?
tail -f /var/log/syslog | grep process_name where process_name is the name of the process we are interested in
tail -f /var/log/syslog | grep process_name
process_name