BitMiracle.LibJpeg.Classic.jpeg_error_mgr.output_message C# (CSharp) Method

output_message() public method

Actual output of any JPEG message.
Override this to send messages somewhere other than Console. Note that this method does not know how to generate a message, only where to send it. For extending a generation of messages see format_message.
public output_message ( ) : void
return void
        public virtual void output_message()
        {
            // Create the message
            string buffer = format_message();

            // Send it to console, adding a newline */
            Console.WriteLine(buffer);
        }