Add error logger class for custom table migration.

This commit is contained in:
vedanshujain 2022-03-04 12:50:30 +05:30
parent d56c79605c
commit d58bbc112f
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
<?php
/**
* Error logger for custom table migrations.
*/
namespace Automattic\WooCommerce\DataBase\Migrations;
/**
* Class MigrationErrorLogger.
*
* Error logging for custom table migrations.
*
* @package Automattic\WooCommerce\DataBase\Migrations
*/
class MigrationErrorLogger extends \WC_Logger {
}