Logger in Clean Architecture
up vote
0
down vote
favorite
I'm trying to apply Clean Architecture in my PHP application. At the moment I have my business logic entity User
and service UsersService
. UsersService
collects all of the use cases related to the User entity.
UsersService->createUser(someData)
takes Users repository and stores it in the database.
I call createUser
use case in my Controller and in my Cli Task. And I want to integrate logging system in my project. I want to log something inside use case and inside controller/task.
Where I need to place my Loggers factory/Logger
interfaces?
php design-patterns architecture
add a comment |
up vote
0
down vote
favorite
I'm trying to apply Clean Architecture in my PHP application. At the moment I have my business logic entity User
and service UsersService
. UsersService
collects all of the use cases related to the User entity.
UsersService->createUser(someData)
takes Users repository and stores it in the database.
I call createUser
use case in my Controller and in my Cli Task. And I want to integrate logging system in my project. I want to log something inside use case and inside controller/task.
Where I need to place my Loggers factory/Logger
interfaces?
php design-patterns architecture
Just use a decorator: stackoverflow.com/a/18682856/727208 (kinda old-ish post). You apply at whatever level you need using DIC.
– tereško
Nov 26 at 0:14
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm trying to apply Clean Architecture in my PHP application. At the moment I have my business logic entity User
and service UsersService
. UsersService
collects all of the use cases related to the User entity.
UsersService->createUser(someData)
takes Users repository and stores it in the database.
I call createUser
use case in my Controller and in my Cli Task. And I want to integrate logging system in my project. I want to log something inside use case and inside controller/task.
Where I need to place my Loggers factory/Logger
interfaces?
php design-patterns architecture
I'm trying to apply Clean Architecture in my PHP application. At the moment I have my business logic entity User
and service UsersService
. UsersService
collects all of the use cases related to the User entity.
UsersService->createUser(someData)
takes Users repository and stores it in the database.
I call createUser
use case in my Controller and in my Cli Task. And I want to integrate logging system in my project. I want to log something inside use case and inside controller/task.
Where I need to place my Loggers factory/Logger
interfaces?
php design-patterns architecture
php design-patterns architecture
edited Nov 21 at 23:40
bcperth
1,9841514
1,9841514
asked Nov 21 at 20:22
Mark Yeltsin
213
213
Just use a decorator: stackoverflow.com/a/18682856/727208 (kinda old-ish post). You apply at whatever level you need using DIC.
– tereško
Nov 26 at 0:14
add a comment |
Just use a decorator: stackoverflow.com/a/18682856/727208 (kinda old-ish post). You apply at whatever level you need using DIC.
– tereško
Nov 26 at 0:14
Just use a decorator: stackoverflow.com/a/18682856/727208 (kinda old-ish post). You apply at whatever level you need using DIC.
– tereško
Nov 26 at 0:14
Just use a decorator: stackoverflow.com/a/18682856/727208 (kinda old-ish post). You apply at whatever level you need using DIC.
– tereško
Nov 26 at 0:14
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53419938%2flogger-in-clean-architecture%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Just use a decorator: stackoverflow.com/a/18682856/727208 (kinda old-ish post). You apply at whatever level you need using DIC.
– tereško
Nov 26 at 0:14