Trace.TraceError Method (String, Object[])
.NET Framework 4
Writes an error message to the trace listeners in the Listeners collection using the specified array of objects and formatting information.
Assembly: System (in System.dll)
[ConditionalAttribute("TRACE")] public static void TraceError( string format, params Object[] args )
Parameters
- format
- Type: System.String
A format string that contains zero or more format items, which correspond to objects in the args array.
- args
- Type: System.Object[]
An object array containing zero or more objects to format.
TraceError calls the TraceEvent methods in the trace listeners with the trace event type Error, passing the message content as an object array with formatting information. See the Format method for more information about the format and args parameters.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
A bug?
Trace.TraceError() is supposed to call TraceEvent as the doc rightly points out but I think there is a bug in here
$0$0
$0
$0Trace.TraceError(string) behaves as expcted but$0
$0Trace.TraceError(format,parms) actually doesn't call TraceEvent at all, instead it calls Trace.Write() and Trace.WriteLine() on all my custom traces. Please look into it. Thanks!$0
- 4/12/2012
- Harshit Parikh