Skip to content
This repository was archived by the owner on Dec 13, 2018. It is now read-only.

Commit e547c7d

Browse files
committed
Fix wrong index
1 parent db43593 commit e547c7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.Framework.Logging/Logger.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ internal void AddProvider(ILoggerProvider provider)
150150
int logIndex;
151151
if (_loggers == null)
152152
{
153-
logIndex = 1;
153+
logIndex = 0;
154154
_loggers = new ILogger[1];
155155
}
156156
else

0 commit comments

Comments
 (0)