Will discuss details about debugging a local application, then will apply the same techniques for remote debugging.
Debugging Techniques
SSH exposing remote service to localhost
Few times I was debugging an application and it was possible to reproduce a problem only using remote available data. I will explain how it is possible to solve this in a easy way. Possible applications are: remote Mysql/Elasticsearch service exposed to your machine, replacement of remote service with a local one that contains a […]
Filtering logs with `tail` and `grep`
There are times when it’s necessary to follow a path in your application and logs related to that path are relevant, in this video I will explain how to use tail -f with grep in order to filter a continuous stream.