Removed the LogLevelType.java file

This commit is contained in:
mathias 2021-08-19 15:50:40 +02:00
parent bbf1232684
commit 2532257f53
No known key found for this signature in database
GPG Key ID: 8950DF62139C852A

View File

@ -1,15 +0,0 @@
package de.gnmyt.SQLToolkit.types;
public enum LogLevelType {
NONE("Sends nothing"),
LOW("Sends Warnings & Errors"),
ALL("Sends Infos, Warnings & Errors");
/**
* Basic constructor for the LogLevelType enum
* @param info Info for documentation
*/
LogLevelType(String info) { }
}