Custom debugging with macro programming

Just looked it up in @show. I needed to escape the right thing^^

for sym in (:debugging, :debugging_str)
    @eval macro $sym(ex)
        quote
            println(now(UTC), ":\t", $(esc(ex)))
        end
    end
end