I have a logging function that takes the calling object as a parameter. I then call getClass().getSimpleName() on it so that I can easily get the class name to add to my log en
Replace your static functions with non-static ones. Instead of
Utils.do_something(...)
do
new Utils().do_something(...)