Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/xljiulang/formattablelogging


https://github.com/xljiulang/formattablelogging

Last synced: 20 days ago
JSON representation

Awesome Lists containing this project

README

        

# FormattableLogging
参数插值日志组件

### Nuget
```

```

### 功能
传统参数化日志写法:
``` c#
var a = 1;
var b = 2;
this.logger.LogInformation("a = {a}; b = {b}", a, b);
```
FormattableLogging的写法:
``` c#
var a = 1;
var b = 2;
this.logger.LogInformation($"a = {a}; b = {b}");
```
编译后和传统写法一样的参数效果