Last Updated : 11 Jul, 2025
The
Console.SetError(TextWriter) Methodsets the Error property of the specified StreamWriter i.e., it redirects the standard error stream to a file. As the console is set with this StreamWriter object, the WriteLine() method can be called to write the error into the file.
Syntax: public static void SetError (System.IO.StreamWriter newError); Parameter: newError: It is a stream which is the new standard error output.Exception:
This method will throw the
ArgumentNullExceptionif the parameter passed is null. Also, since it uses the StreamWriter object, it's exceptions should also be taken care of.
Example:In this example, the
SetError() methodis used to set the StreamWriter object to the console, and the error messages will be written into a log file from the Console.
csharp
// C# program to demonstrate
// the SetError() method
using System;
using System.IO;
class GFG {
// Main Method
static void Main()
{
// Define file to receive error stream.
string fn = "F:\\gfg_error.log";
// Define the new error StreamWriter object
StreamWriter errStream = new StreamWriter(fn);
// Redirect standard error stream to file.
Console.SetError(errStream);
// Write the error message into the Log file
Console.Error.WriteLine("Error line is written into the log file.");
Console.Error.WriteLine("Keep coding geeks!");
// Close redirected error stream.
Console.Error.Close();
}
}
Output:
The gfg_error.log file will now have the error messages in it.
Reference:RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4