Compare commits

..

2 Commits

Author SHA1 Message Date
b0d647e091
Removing some error_log usage 2021-10-06 09:54:07 -06:00
66687bf8b1
Removing some error_log usage 2021-10-06 09:54:03 -06:00
2 changed files with 1 additions and 2 deletions

View File

@ -42,7 +42,7 @@ class App {
* @return void
*/
public static function plugin_deactivation(): void {
error_log( 'Deactivation hook invoked.' );
//
}
/**

View File

@ -11,5 +11,4 @@ if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
function run_uninstaller() {
// Put logic here to undo things when this plugin is uninstalled.
error_log( 'Uninstall hook activated for plugin at ' . __DIR__ );
}