**警告日志**
`warning($message,?array $context?=?array())`
**說明**
例如: 使用過時的API,API使用不當,不合理的東西不一定是錯誤
**參數**
```
$message 消息 {user}::lrange()?expects?{exactly}?3?parameters,?1?given".microtime(true)
$context 內容 ["user"=>"test","exactly"?=>?"test"] 替換{user} ?{exactly}
```
**示例**
```
define('CONFIG\_PATH',\_\_DIR\_\_.'/config/');
(newConfig())->load(CONFIG\_PATH,'log');
$log?=?(newLog())->warning("{user}::lrange()?expects?{exactly}?3?parameters,?1?given".microtime(true),["user"=>"test","exactly"?=>?"ji"]);
print_r($log);
```