Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Windows Phone 8 Logging

Description

I just start Windows Phone Development and I try to put some Logs in my application as I usually do in Android, I try to search through the Internet, but can't find anything useful.

Question

Is there in some native methods like Log.i(), Log.e() etc. in Android but for Windows Phone? I don't need to install some new libraries or something else.

like image 692
Viktor Apoyan Avatar asked Mar 11 '14 12:03

Viktor Apoyan


1 Answers

Where did you expect to see the Log output?

You can try to use Debug.WriteLine() method, for example :

System.Diagnostics.Debug.WriteLine("Print something");

to print some value to Visual Studio output window.

like image 136
har07 Avatar answered Oct 12 '22 23:10

har07