You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Are the library classes ment to be extended? If so, please make all methods and properties protected instead of private.
I tried to extend IntrospectionProcessor to add a whole callstack, but IntrospectionProcessor has private $level; and others, so it's not possible to extend easily.
The text was updated successfully, but these errors were encountered:
I'd say rather send a PR to have a new option on it so everyone interested can benefit, instead of extending.. Otherwise if you don't want to contribute it then just copy the code, it's a very small class and I'd rather keep it more easily maintainable without having to consider extension points.
If you only need Level btw you could override the constructor and store the level on your class as well, then pass it along to parent constructor.
Monolog version 2
Are the library classes ment to be extended? If so, please make all methods and properties protected instead of private.
I tried to extend IntrospectionProcessor to add a whole callstack, but IntrospectionProcessor has
private $level;
and others, so it's not possible to extend easily.The text was updated successfully, but these errors were encountered: