You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-8Lines changed: 6 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,28 +9,26 @@ Blazor Extensions are a set of packages with the goal of adding useful things to
9
9
10
10
# Blazor Extensions Logging
11
11
12
-
This package is a implementation for the [Microsoft Extensions Logging](https://github.com/aspnet/Logging) abstraction to support
12
+
This package is an implementation for the [Microsoft Extensions Logging](https://github.com/aspnet/Logging) abstraction to support
13
13
using the ```ILogger``` interface in your Blazor code.
14
14
15
-
When the component is configured, all the log statements will appear in the browser's developmer tool console.
15
+
When the component is configured, all the log statements will appear in the browser's developer tools console.
16
16
17
17
# Features
18
18
19
19
## Content to log
20
20
21
-
The logger supports the same string formatting what MEL provides, altogether with named parameter replacement in the message.
21
+
The logger supports the same string formatting that MEL provides, together with named parameter replacement in the message.
22
22
23
-
In addition to that if you like to log an object then in the browser console you'll see an object displayed, and on that you can expand
24
-
members, hierarchies to see what is in them.
23
+
Additionaly, you're able to log an object in the browser console. You can expand members and hierachies to see what's contained within.
25
24
26
-
If you want to log an enumerable list of objects, then the browser side component will display iy be calling ```console.table```.
25
+
If you want to log an enumerable list of objects, then the browser side component will display it by calling ```console.table```.
27
26
28
27
## Filtering
29
28
30
29
The implementation supports the ```ILoggerFactory``` based filtering configuration that is supplied by the Microsoft Extension Logging abstraction.
31
30
32
-
To keep it lightweight [Microsoft Extensions Configuration](https://github.com/aspnet/Configuration) based configuration is not supported, the logger
33
-
can be only configured in code.
31
+
To keep it lightweight [Microsoft Extensions Configuration](https://github.com/aspnet/Configuration) based configuration is not supported, the logger can be only configured in code.
0 commit comments