for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* functions/application/warning.php
*
* NOTICE OF LICENSE
* This source file is subject to the Open Software License (OSL 3.0)
* that is available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* PHP version 5
* @author Tim Wagner <[email protected]>
* @copyright 2018 TechDivision GmbH <[email protected]>
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @link https://github.com/appserver-io/appserver
* @link http://www.appserver.io
*/
use Psr\Log\LogLevel;
use AppserverIo\Appserver\Core\Utilities\LoggerUtils;
// make sure the function has not already been registered
if (!function_exists('warning')) {
* Exceptional occurrences that are not errors.
* Example: Use of deprecated APIs, poor use of an API, undesirable things
* that are not necessarily wrong.
* @param string $message The message to log
* @param array $context The context for log
* @return void
function warning($message, array $context = array())
{
LoggerUtils::log(LogLevel::WARNING, $message, $context);
}