HM\BackUpWordPress\Backup::warning PHP Method

warning() public method

A warning is always treat as non-fatal and should only be used for recoverable issues with the backup process.
public warning ( string $context, string $warning )
$context string The context for the warning.
$warning string The warning that was encountered.
    public function warning($context, $warning)
    {
        if (empty($context) || empty($warning)) {
            return;
        }
        // Ensure we don't store duplicate warnings by md5'ing the error as the key
        $this->warnings[$context][md5(implode(':', (array) $warning))] = $warning;
    }