Domain model should be dependency-less. Therefore - it must not contain any reference to logging mechanism. I understand that there are not any problems with logging infrastructure&application layer, but what if i want to log domain model? Is it not supposed to be logged, just unit tested & logged from outside (infrastructure/application)?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Your domain object can have events that notify the outside that things are happening inside. Your infrastructure can attach to these events to log what's needed. |
|||
|
|
|
If you need to log the values you can use reflection to build a string description of your objects. Lots of platforms have ready-made libraries that can do things like this for your. I really can't see many sensible use cases for logging from inside the domain model. Actually with good test coverage there's not many good technical use cases for logging at all. I suppose there may be some nice legal ones. |
|||
|
|
Try Log4PostSharp |
|||
|
|