GSF.Diagnostics.LogSubscriptionFileWriter.SetPath C# (CSharp) Method

SetPath() public method

Sets the path of the log files.
public SetPath ( string logDirectory ) : void
logDirectory string
return void
        public void SetPath(string logDirectory)
        {
            FilePath.ValidatePathName(logDirectory);
            lock (m_syncRoot)
            {
                m_path = logDirectory;
                m_flushTask.Start(1000);
            }
        }

Same methods

LogSubscriptionFileWriter::SetPath ( string logDirectory, VerboseLevel level ) : void