-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve error log #530
Improve error log #530
Conversation
ff04e30
to
29359d4
Compare
…limit; fix offline assets/styles
29359d4
to
731079f
Compare
@@ -21,7 +21,7 @@ | |||
background-color: bgColor; | |||
|
|||
.a0-wrap { | |||
font-family:'avenir roman'; | |||
font-family:'avenir roman', "Open Sans", sans-serif; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fallback font to WP default instead of serif
@@ -903,8 +903,8 @@ | |||
} | |||
|
|||
.a0-table { | |||
margin:30px; | |||
width: initial; | |||
margin: 2em 2%; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a little breathing room around the admin columns on mobile.
@@ -31,24 +31,21 @@ public function init_menu() { | |||
exit; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
General clean-up
} | ||
} else { | ||
$message = is_object( $error ) || is_array( $error ) ? serialize( $error ) : $error; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Moved all of the actual logging logic into WP_Auth0_ErrorLog::add
@@ -1,41 +1,62 @@ | |||
<?php |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Clean-up, output sanitization, and add the count column
@@ -1,8 +1,13 @@ | |||
<?php |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Offline support for the header image
@@ -0,0 +1,242 @@ | |||
<?php |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎉
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
get
method toWP_Auth0_ErrorLog
to retrieve current logadd
method toWP_Auth0_ErrorLog
to combine duplicate errors and add timeclear
method toWP_Auth0_ErrorLog
to empty the error logdelete
method toWP_Auth0_ErrorLog
to delete the error log option