summaryrefslogtreecommitdiff
path: root/java/src/org/singinst/uf/common/LogUtil.java
blob: 5db6c6c041d24e6b485db1fc55d73a9acb41e880 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.singinst.uf.common;


public class LogUtil {

	// Show debug information
	private static final boolean debug = true;

	public static void error(Exception e) {
		e.printStackTrace();
		
	}

	public static void info(String string) {
		if (debug)
			System.err.println(string);
	}

}