__construct() public method

Constructor. Remember to call this as parent constructor if making a childlogger
public __construct ( $simpleHistory = null )
$simpleHistory history class objectinstance
 function __construct($sh)
 {
     parent::__construct($sh);
     // Add option to not show spam comments, because to much things getting logged
     #add_filter("simple_history/log_query_sql_where", array($this, "maybe_modify_log_query_sql_where"));
     add_filter("simple_history/log_query_inner_where", array($this, "maybe_modify_log_query_sql_where"));
     add_filter("simple_history/quick_stats_where", array($this, "maybe_modify_log_query_sql_where"));
 }