Hi,
i start the developing of a Log4PhpBundle for the Symfony2 framework. The basic
appenders like AppenderFile and AppenderRollingFile work fine. Now I want to
integrate the doctrine-service for the db logging. But there are some probleme
with die LoggerReflectionUtils::createObject(). My appender is a full qualified
classname with namespaces. So the createObject() execute
basename('Foo\AppenderBar') and remove the namespace: AppenderBar is the return
value. Of course the class AppenderBar does not exist.
I remove this line (LoggerReflectionUtils:131) in the method and it works fine,
with the basic appenders of log4php too.
I don't want hack log4php. So is it possible to change/remove this line in the
public repository?
FS