Im getting a Circular dependency error for the following situation, Lets say I have 3 modules; AuthModule, UsersModule, CustomLoggerModule.
Both UsersModule and AuthModule consume the CustomLoggerModule (For their own loggin purposes). On the other hand the AuthModule also consumes the UsersModule because it needs to find users.
I have tried making the module Global and Dynamic but keep on getting the same error. Is there a way that I can make a Module that can be used in all modules that already have dependencies between each of them?