All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.mertakdut.Logger Maven / Gradle / Ivy

package com.github.mertakdut;

class Logger {

	public enum Severity {
		info, warning, error
	};

	public void log(Severity severity, String message) {
		System.out.println(message);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy