Skip to content

Commit 320db7a

Browse files
authored
Updated README.md
fixed a few spelling mistakes and (hopefully) made a sentence flow better
1 parent 8341975 commit 320db7a

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

README.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,28 +9,26 @@ Blazor Extensions are a set of packages with the goal of adding useful things to
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)