Skip to content

Commit

Permalink
update code.
Browse files Browse the repository at this point in the history
  • Loading branch information
Maniceraf committed Dec 4, 2023
1 parent 62c62c7 commit 8fa06d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ public class SomeClass
public void SomeMethod()
{
// Log some messages
logger.WriteLog(LogLevel.Info, "This is an informational message");
await logger.WriteLogAsync(LogLevel.Info, "This is an informational message");
_logger.WriteLog(LogLevel.Info, "This is an informational message");
await _logger.WriteLogAsync(LogLevel.Info, "This is an informational message");

// Logging other messages...
}
Expand Down

0 comments on commit 8fa06d1

Please sign in to comment.