ApprovalUtilities.SimpleLogger.LoggerInstance.Show C# (CSharp) Method

Show() public method

public Show ( bool markerIn = true, bool variables = true, bool events = true, bool sql = true, bool timestamp = true, bool timeDifference = true ) : void
markerIn bool
variables bool
events bool
sql bool
timestamp bool
timeDifference bool
return void
        public void Show(bool markerIn = true, bool variables = true, bool events = true, bool sql = true,
            bool timestamp = true, bool timeDifference = true)
        {
            showMarkerIn = markerIn;
            showVariables = variables;
            showEvents = events;
            showSql = sql;
            showTimestamp = timestamp;
            showTimeDifference = timeDifference;
        }

Usage Example

Example #1
0
 public static void Show(bool markerIn  = true, bool variables      = true, bool events = true, bool sql = true,
                         bool timestamp = true, bool timeDifference = true)
 {
     log.Show(markerIn, variables, events, sql, timestamp, timeDifference);
 }