Skip to content

Commit a024c6a

Browse files
Merge pull request #5 from lbogerd/master
Fixed a few mistakes in the readme
2 parents 8341975 + d8b7fb4 commit a024c6a

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

README.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,32 +5,30 @@
55

66
# Blazor Extensions
77

8-
Blazor Extensions are a set of packages with the goal of adding useful things to [Blazor](https://blazor.net).
8+
Blazor Extensions is a set of packages with the goal of adding useful features to [Blazor](https://blazor.net).
99

1010
# Blazor Extensions Logging
1111

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
1313
using the ```ILogger``` interface in your Blazor code.
1414

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.
1616

1717
# Features
1818

1919
## Content to log
2020

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.
2222

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.
2524

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```.
2726

2827
## Filtering
2928

3029
The implementation supports the ```ILoggerFactory``` based filtering configuration that is supplied by the Microsoft Extension Logging abstraction.
3130

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.
3432

3533
## Log levels
3634

0 commit comments

Comments
 (0)