cobaia/monologdoctrine

Monolog meets Doctrine as SQL Logger

v1.0.1 2014-05-15 19:31 UTC

This package is not auto-updated.

Last update: 2024-04-13 10:12:08 UTC


README

Doctrine Monolog, makes monolog meets Doctrine as a SQL Logger

Usage

	$paths = array(
    		'entityFolder',
	);
	$config = Setup::createAnnotationMetadataConfiguration($paths, true);
	$config->setSQLLogger(new MonologSQLLogger(null, null, __DIR__ . '/path/of/log/'));

By default the first two params can be null, or you can pass one instance of Monolog\Logger and Monolog\Handler\StreamHandler and the third param won't be necessary in this case.

License