I am debugging a new application that is crashing. I want to watch the messages as they are being written to the log. What command should I use?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you’re on a unixy system and your log is a file, you want
tail -f <filename>.If you’re on a Windows system, there are ports of
tailavailable (hat tip – Dave Webb).