Back to project page simple-dash.
The source code is released under:
MIT License
If you think the Android project simple-dash listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.bmdtech.simpledash.utils; /*from w w w . j a v a 2 s . c o m*/ import android.util.Log; import org.bmdtech.simpledash.event.BaseEvent; public class Logging { public static void logEvent(String tag, BaseEvent event) { Log.v(tag, String.format("Event <%s>. Timestamp difference <%s>", event.getTimestamp().getMillis(), System.currentTimeMillis() - event.getTimestamp().getMillis())); } }