blob: 2be644de0adbf11c4ee00c8f476758cc9ef40177 (
plain)
1
2
3
4
5
6
7
|
package com.keuin.ohmyvanillamc;
public class DebugUtil {
public static void printThreadInfo(String mark) {
System.out.printf("[%s] Thread %s : id=%d%n", mark, Thread.currentThread().getName(), Thread.currentThread().getId());
}
}
|