12345678910111213 |
- using Dicom.Log;
- namespace Vinno.FIS.Sonopost.Features.Dicom
- {
- public class DicomLog : Logger
- {
- public override void Log(LogLevel level, string msg, params object[] args)
- {
- var content = string.Format(NameFormatToPositionalFormat(msg), args);
- IUS.Common.Log.Logger.WriteLineError($"[DICOM][{level}]{content}");
- }
- }
- }
|