##// END OF EJS Templates
fixed trace
cin -
r219:cc1baf7c8bd9 v2
parent child
Show More
@@ -41,7 +41,7 namespace Implab.Diagnostics {
41 41 }
42 42
43 43 public static TraceEvent Create(LogicalOperation operation, TraceEventType type, string format, params object[] args) {
44 return new TraceEvent(operation, type, format == null ? String.Empty : String.Format(format, args));
44 return new TraceEvent(operation, type, format == null ? String.Empty : args == null || args.Length == 0 ? format : String.Format(format, args));
45 45 }
46 46 }
47 47 }
General Comments 3
Under Review
author

Auto status change to "Under Review"

Approved
author

ok, latest stable version should be in default

You need to be logged in to leave comments. Login now