Exemple #1
0
 MklException(string msg, string caller, string file, int?line)
     : base(AppMsg.define($"{msg} {caller} {file} {line}", LogLevel.Error))
 {
 }
Exemple #2
0
Fichier : t_mkl.cs Projet : 0xCM/z0
 /// <summary>
 /// Submits a diagnostic message to the queue related to performance/benchmarking
 /// </summary>
 /// <param name="msg">The message to submit</param>
 protected void TracePerf(string msg)
 {
     Trace(AppMsg.define($"{msg}", LogLevel.Status));
 }