Skip to content

Commit

Permalink
fix: fix error with logging
Browse files Browse the repository at this point in the history
  • Loading branch information
basscl committed Mar 20, 2024
1 parent 4da21e4 commit 3b2f35f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/class-sqc-sync-work-categories.php
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ private function debug_log( $var, $message = '', $tab = 0 ) {
if ( $message ) {
error_log( $message );
}
error_log( print_r( $var, true ), 3, WP_DEBUG_LOG );
error_log( print_r( $var, true ) );
}
// phpcs:enable
}
Expand Down

0 comments on commit 3b2f35f

Please sign in to comment.