Auto status change to "Under Review"
@@ -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
ok, latest stable version should be in default
You need to be logged in to leave comments.
Login now