SocketLog
SocketLog copied to clipboard
命名空间错误!
composer中,单独加载autoload.php文件后,得到的是 think\slog 这个空间,而slog.php的首行是
namespace think
应该是
namespace think\slog;
使用时应该是
\think\slog\slog::config();
\think\slog\slog::log(');
请确认!
棒棒哒