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

com.flybotix.hfr.util.log.LogOutput Maven / Gradle / Ivy

Go to download

A way for wifi robots and IoT devices to quickly send compressed data arrays across a network.

There is a newer version: 2019.1.11
Show newest version
package com.flybotix.hfr.util.log;

public class LogOutput {
	public final ELevel level;
	public final String text;
	public final String thread;
	public final String method;
	public final long time;
	
	LogOutput(long pTime, ELevel pLevel, String pText, String pThread, String pMethod)
	{
		time = pTime;
		level = pLevel;
		text = pText;
		thread = pThread;
		method = pMethod;
	}
	
	public String toString() {
//	  return "[" + level + "] [" + thread + "] [" + method + ":\t" + text;
    return "[" + level + "] [" + method + ":\t" + text;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy