ximeng1987/think-1987

think log

Installs: 14

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/ximeng1987/think-1987

v2.0 2018-06-17 04:08 UTC

This package is not auto-updated.

Last update: 2026-01-18 12:13:30 UTC


README

写入LOG日志,支持文件及SocketLog。

安装

composer require topthink/think-log

用法:

$log = new \think\Log;
$log->init([
	'type'=>'file',
	'path'=>'./runtime/logs/',
]);
$log->record('error info','error');
$log->error('error info');
$log->info('log info');
$log->save();