This plugin stores logs for your application with different types: error and info
How to use
In any php file you can use methods:
LsWpLog::info("My Title", [any object]);
LsWpLog::error("My Title", [any object]);
or add namespace
use LsWpLog as Log;
Log::info("My Title", [any object]);
Log::error("My Title", [any object]);






