Your problem is that the log variable is created inside the main(String[] args) method. You have to create this object outside the method but inside the class.



public class Main {

final...