BitMiracle.LibJpeg.Classic.jpeg_common_struct.TRACEMS C# (CSharp) Method

TRACEMS() public method

Shows informational and debugging messages.
public TRACEMS ( int lvl, int code ) : void
lvl int See for description.
code int The message code.
return void
        public void TRACEMS(int lvl, int code, params object[] args)
        {
            m_err.m_msg_code = code;
            m_err.m_msg_parm = args;
            m_err.emit_message(lvl);
        }
    }

Same methods

jpeg_common_struct::TRACEMS ( int lvl, J_MESSAGE_CODE code ) : void