0

Im working at mobile games area as a QA Engineer. We develop mobile games for Android, iOs and Windows. And now we have a question: how to get logs from Windows devices(tablets,phones).

Is there any program like iTools(or iPhone Configuration Utility) for iOs or ddms for Android, but for Windows? Somebody know how can i get device logs from Win tablet for example?

We need to get logs from app launch(game).

Mogsdad
  • 44,709
  • 21
  • 151
  • 275
eli
  • 1
  • 1

1 Answers1

0

Where 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.

Have a look here Windows Phone: Log to console too.

Hope it helps :)

Community
  • 1
  • 1
Kulasangar
  • 9,046
  • 5
  • 51
  • 82