VirtualBox Log Files Location

VirtualBox log files is one of the great tools to diagnose an issue in your VirtualBox. It will always create a log file which reflects the lifecycle of your virtual machine. VirtualBox log files is located in user/per-vm directory. Depending on the OS: On Windows, %HOMEDRIVE%%HOMEPATH%\.VirtualBox\Machines\\Logs E.g. C:\Documents and Settings\Username\.VirtualBox\Machines\\Logs\vbox. log On Mac OS X, this

Read More

Android Log Sparingly

While logging is necessary it has a significantly negative impact on performance and quickly loses its usefulness if it’s not kept reasonably terse. The logging facilities provides five different levels of logging. Below are the different levels and when and how they should be used. ERROR: This level of logging should be used when something

Read More

Eclipse +++ LOG: Entry Corrupt Or Truncated

When developing in Eclipse you might run into this error when using logging. In this case Java while developing for Andorid. “+++ LOG: entry corrupt or truncated” First thing to test is if you’re running First thing to test is if you’re using a variable that might contain to much data. Log.e(“#”, myVar); Try using

Read More