in reply to Re: Best way to share logging object among multiple objects?
in thread Best way to share logging object among multiple objects?
++
If I understand this correctly, I'd want to use a singleton and a role. Making my logger a singleton makes it so each object uses the same Log::Dispatch object. Making it a role makes it so I don't lose my logging capability down a rabbit hole of multiple inheritance in the event my code gets really complex.
Can I even do that?
Does that sound right? Did I totally miss the point?
Thanks!
--Pileofrogs
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Best way to share logging object among multiple objects?
by pemungkah (Priest) on Aug 12, 2010 at 00:43 UTC |