cadencii.debug.force_logfile_path C# (CSharp) Method

force_logfile_path() public static method

public static force_logfile_path ( string path ) : void
path string
return void
        public static void force_logfile_path( string path ) {
            try {
                if ( s_debug_out != null ) {
                    s_debug_out.Close();
                    s_debug_out = new StreamWriter( path );
                }
            } catch {
            }
            s_path = path;
        }