An application I\'m working on requires logging of actions, user who performs the action, and time of action to a database.
Which design pattern is most popular/appropri
You can use AOP to apply logging without any intrusive behavior. AOP may feel like a mixture of Proxy and Decorator Pattern.