Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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)?

share|improve this question

3 Answers

up vote 5 down vote accepted

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.

share|improve this answer
Now that's a good point. :) – Arnis L. May 21 '09 at 6:15

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.

share|improve this answer
I see it the same, just wanted to know what others think. I'm the one who is going to convince his team to use DDD ideas for their project. It's going to be quite hard. For various reasons... – Arnis L. May 19 '09 at 12:50

Try Log4PostSharp

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.