Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static void log(Object sender, String log) {
System.out.println("Class:" + sender.getClass().getSimpleName());
System.out.println("Log:" + log);
}
}