Posts Tagged ‘logging’

Twitter-Based Exception Logger

Friday, November 20th, 2009
1
2
3
4
5
6
7
8
try
{
   //some code goes here
}
catch (Exception e)
{
   logToTwitter("Application Name", e.getStackTrace());
}

(more…)