On the Domain-Driven Design website I see:
Concentrate all the code related to the domain model in one layer and isolate it from the user interface, application, and infrastructure code. The domain objects, free of the responsibility of displaying themselves, storing themselves, managing application tasks, and so forth, can be focused on expressing the domain model. This allows a model to evolve to be rich enough and clear enough to capture essential business knowledge and put it to work.
What "goes in" the infrastructure code? Does this mean supporting frameworks (for logging, for example)?
I presume "application code" means the domain objects (i.e. the domain model)?