Set of loggers compatible with Microsoft.Extensions.Logging. Provides an OSLog logger, and a browser console WebAssembly logger
Перейти к файлу
Martin Zikmund be4d3ce776
feat: Additional target (#58)
2024-09-16 07:53:58 -04:00
.github chore(WelcomeBot): Update config.yml with new swag link (#57) 2023-11-08 15:29:08 -05:00
build fix: Force include android/macOS targets to avoid cross-targeting restore issues (#38) 2022-05-21 22:24:07 -04:00
src feat: Additional target (#58) 2024-09-16 07:53:58 -04:00
.azure-pipelines.yml feat: Add support net7 for wasm (#54) 2023-03-28 10:45:37 -04:00
.gitignore Initial commit 2020-12-20 21:08:26 -05:00
.mergify.yml Initial commit 2020-12-20 21:08:26 -05:00
CODE_OF_CONDUCT.md Initial commit 2020-12-20 21:08:26 -05:00
LICENSE.md Initial commit 2020-12-20 21:08:26 -05:00
README.md Dev/jela/ci update (#3) 2020-12-20 22:56:42 -05:00
SECURITY.md Initial commit 2020-12-20 21:08:26 -05:00
gitversion.yml Fix logging loop (#13) 2021-06-07 07:50:28 -04:00

README.md

Uno.Extensions.Logging

A set of logging extensions for Microsoft.Extensions.Logging.

OSLogLoggerProvider

This logger is using the OSLog iOS API to log to the system log.

Usage example:

.AddProvider(new Uno.Extensions.Logging.OSLogLoggerProvider());

WebAssemblyConsoleLoggerProvider

This logger is using the browser's console javascript API

Usage example:

.AddProvider(new Uno.Extensions.Logging.WebAssembly.WebAssemblyConsoleLoggerProvider());