Updated README.md

This commit is contained in:
Netkas 2023-01-29 21:55:21 -05:00
parent 2127645ebe
commit e9a5c7fba7

View file

@ -70,14 +70,13 @@ multiple error levels that can be used to log messages
require 'ncc'; require 'ncc';
import('net.nosial.loglib'); import('net.nosial.loglib');
use Nosial\Libs\Log; \LogLib\Log::debug('This is a debug message');
\LogLib\Log::verbose('This is a verbose message');
\LogLib\Log::info('This is an info message');
Log::info("This is an info message"); \LogLib\Log::warning('This is a warning message');
Log::warning("This is a warning message"); \LogLib\Log::error('This is an error message');
Log::error("This is an error message"); \LogLib\Log::fatal('This is a fatal message');
Log::debug("This is a debug message");
Log::critical("This is a critical message");
``` ```
To display the log messages, you can run your program To display the log messages, you can run your program