Good news. Well done.
For future reference, to see all logs files
To which the response will be something like
Code: Select all
alternatives.log dmesg kern.log.1 regen_ssh_keys.log
apt dmesg.0 lastlog samba
auth.log dmesg.1.gz lpr.log syslog
auth.log.1 dmesg.2.gz mail.err syslog.1
bootstrap.log dmesg.3.gz mail.info user.log
btmp dmesg.4.gz mail.log user.log.1
ConsoleKit dpkg.log mail.warn wtmp
daemon.log faillog messages Xorg.0.log
daemon.log.1 fontconfig.log messages.1 Xorg.0.log.old
debug fsck news
debug.1 kern.log ntpstats
Quite a long list from various sources; messages is a common starting point for debugging all manner of things. You might observe it with the tail command
the -f ensures the file is followed i.e.you see updates as they are added.
Some entries, like samba, are directories which contain more files. The gz files are compressed, zip archive files.
There is no log related to wpa_supplicant in my listing. This is not uncommon. The wpa_supplicant runs as a daemon and will not include debug options usually. The man-page
http://linux.die.net/man/8/wpa_supplicant shows all options, you can run the wpa_supplicant from the command line and read the output generated. When everything is working its a good idea to remove any debugging to save space and 'wear and tear' on the SD card.
Good luck.