An open API service indexing awesome lists of open source software.

https://github.com/crozone/adblogger

A Xamarin Android Adb logger for the Microsoft.Extensions.Logging framework.
https://github.com/crozone/adblogger

Last synced: over 1 year ago
JSON representation

A Xamarin Android Adb logger for the Microsoft.Extensions.Logging framework.

Awesome Lists containing this project

README

          

# AdbLogger

A Xamarin Android Adb logger for the Microsoft.Extensions.Logging framework.

Built for `net6.0-android` runtime.

### Non-DI example:

```
ILoggerFactory loggerFactory = new LoggerFactory()
.AddAdb("MyApp", LogLevel.Debug);

...

ILogger logger = loggerFactory.CreateLogger();

...

logger.LogInformation("Log some information here!");
```

The logs can then be viewed from an attached `adb` instance:

`adb logcat -s MyApp`

### TODO:

* Create Nuget package

* Add DI example