Windows Phone实用开发技巧(22):使用日志记录信息与异常信息
what is logging ?
logging is the felling, skidding, on-site processing, and loading of trees or logs onto trucks. and since windows phone is much more event driven. you can find more information in event logging.
why to use logging ?
exception is everywhere in common software development. a good logging tool may helps a lot in solving problems. here i recommend logging tool in wp7contrib.
here i created a helper class to do better and easier logging.
we can log common information as well as exception simply by pass different parameter. we can also log device information since it may be help in finding which device goes wrong.
how to use it ?
first, we should add dll reference to our main project, shown as follow:
after that, we manually generate a dividebvzeroexception, shown as below:
here, i use logginghelper(shown before) class to log exception.as we run the app, we can find exception both in output and log.dat which is the file store logging.
ok, it is very simple to use. you can find source code here.
作者“alexis的51博客”