* using .Net framework version 4.6.1 in all projects * implemented exception handling in VCFileWrapperFactory * moved logging in separate assembly * enabled logging in wrapper code
8 lines
128 B
C#
8 lines
128 B
C#
namespace CoatiSoftware.SourcetrailPlugin.Logging
|
|
{
|
|
public interface ILogger
|
|
{
|
|
void LogMessage(LogMessage message);
|
|
}
|
|
}
|