private LogConfiguration NewLogConfiguration( string tableName = "LOGGING.LOG", string serverName = "SERVER_NAME", string application = "APPLICATION", string date = "DATE", string level = "LEVEL", string sourceContext = "SOURCE_CONTEXT", string state = "STATE", string exception = "EXCEPTION" ) { var logConfiguration = new LogConfiguration(tableName); logConfiguration.Add(serverName, "server1"); logConfiguration.Add(application, "OracleLoggerProvider"); logConfiguration.Add(date, LogValue.Date); logConfiguration.Add(level, LogValue.LogLevel); logConfiguration.Add(sourceContext, LogValue.SourceContext); logConfiguration.Add(state, LogValue.State); logConfiguration.Add(exception, LogValue.Exception); return(logConfiguration); }