Skip to content

Commit

Permalink
Merge pull request #28 from nguyenanhung/develop
Browse files Browse the repository at this point in the history
Release version 2.0.2
  • Loading branch information
nguyenanhung authored Mar 18, 2021
2 parents d4991ca + 5ff3781 commit f2dc798
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/Debug.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,12 @@
* @author 713uk13m <[email protected]>
* @copyright 713uk13m <[email protected]>
* @since 2018-10-17
* @version 0.1.2.5
* @version 2.0.2
*/
class Debug implements ProjectInterface, DebugInterface
{
use Version;

const LOG_BUBBLE = TRUE;
const FILE_PERMISSION = 0777;
/** @var bool Cấu hình trạng thái Debug, TRUE nếu cấu hình Debug được bật */
Expand Down Expand Up @@ -336,6 +337,7 @@ public function log($level = '', $name = 'log', $msg = 'My Message', $context =
// If valid globalLoggerLevel -> use globalLoggerLevel
$useLevel = strtolower($this->globalLoggerLevel);
} else {
// Default Level is INFO
$useLevel = in_array($level, $listLevel) ? trim($level) : trim('info');
}
switch ($useLevel) {
Expand Down
2 changes: 1 addition & 1 deletion src/ProjectInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*/
interface ProjectInterface
{
const VERSION = '2.0.1';
const VERSION = '2.0.2';

/**
* Hàm lấy thông tin phiên bản Packages
Expand Down

0 comments on commit f2dc798

Please sign in to comment.