1
0
mirror of https://bitbucket.org/anguist/ntpa synced 2025-10-05 10:30:56 +00:00

Log of improved file handling

This commit is contained in:
Carsten Larsen
2016-09-03 12:07:37 +02:00
parent 5d90497bd9
commit 027541e9df

View File

@ -80,5 +80,12 @@ namespace Ntp.Analyzer.Log
log.WriteLine(e, Severity.Trace);
}
}
internal static void WroteFile(this LogBase log, string file)
{
log.WriteLine(
$"Wrote new file {file}",
Severity.Info);
}
}
}