I have made a class named Log in a file named Log.java.
Now, I am trying to instantiate an Object of class Log in another Class (lets say Trace.java), in main method (public static void main(String argv[])).
Whenever I try to execute follwing snippet, I get an error
Log l = new Log();
Error is :
error: cannot find symbol
Log l = new Log();
^
Login the same package? If not, you need to import it.