By default when you use tail on a file it will display the last 10 lines of the file. Change this with the -n switch (n stands for number of lines).
e.g. tail -n 20 myapplication.log
Use the -f switch to continually monitor a file (f stands for "follow").
e.g. tail -f myapplication.log
All writes to the file will also appear on the screen.