LXG
LXG

Reputation: 1977

using logcat outside android world

I'm windows c# developer and I works sometime with android, just for fun, and I found logcat really useful, so I've been looking around for a while how send log to logcat, but I 've found nothing, I dunno where find protocol ecc.

I like to send text to logcat, just like NLog (http://nlog-project.org/), to use logcat as log viewer, since I haven't found anything such as NLog to log into logcat

so where I can find some info how send in c# some log?

alternative is welcome

thanks

Upvotes: 0

Views: 323

Answers (1)

Stephen Price
Stephen Price

Reputation: 1649

 Console.WriteLine("This message will show up in logcat output");

Nothing fancy.

Myself, I am looking for NLog target to output my logging to the logcat but the Console target doesn't appear to do so.

Upvotes: 1

Related Questions