File tree Expand file tree Collapse file tree 3 files changed +4
-7
lines changed
CredentialProvider.Microsoft Expand file tree Collapse file tree 3 files changed +4
-7
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -11,23 +11,23 @@ namespace NuGetCredentialProvider.Logging
1111 /// <summary>
1212 /// Logs messages to standard output, with log level included
1313 /// </summary>
14- internal class StandardOutputLogger : HumanFriendlyTextWriterLogger
14+ public class StandardOutputLogger : HumanFriendlyTextWriterLogger
1515 {
1616 public StandardOutputLogger ( ) : base ( Console . Out ) { }
1717 }
1818
1919 /// <summary>
2020 /// Logs messages to standard error, with log level included
2121 /// </summary>
22- internal class StandardErrorLogger : HumanFriendlyTextWriterLogger
22+ public class StandardErrorLogger : HumanFriendlyTextWriterLogger
2323 {
2424 public StandardErrorLogger ( ) : base ( Console . Error ) { }
2525 }
2626
2727 /// <summary>
2828 /// Emits a log message in a human-readable format to a TextWriter, including the log level
2929 /// </summary>
30- internal class HumanFriendlyTextWriterLogger : LoggerBase
30+ public class HumanFriendlyTextWriterLogger : LoggerBase
3131 {
3232 private readonly TextWriter writer ;
3333
Original file line number Diff line number Diff line change 99
1010namespace NuGetCredentialProvider . Logging
1111{
12- internal abstract class LoggerBase : ILogger
12+ public abstract class LoggerBase : ILogger
1313 {
1414 private LogLevel minLogLevel = LogLevel . Debug ;
1515 private bool allowLogWrites = false ;
You can’t perform that action at this time.
0 commit comments