By tag: Facade
0
kicks
Avoiding dependencies to third party libraries: Exceptions.
You can use the facade pattern to isolate yourself from a third party library. The main benefit of doing this is that your client code won’t have a dependency on an interface defined by an external library, given you the desired flexibility to change the library that implements the logger later on. ...