MCPcopy Create free account
hub / github.com/Garten/sourcecraft / print

Method print

src/basic/Loggger.java:39–46  ·  view source on GitHub ↗
(String mesasge, int callDepth)

Source from the content-addressed store, hash-verified

37 }
38
39 public static void print(String mesasge, int callDepth) {
40 StringBuilder stringBuilder = new StringBuilder();
41 addCallLocation(stringBuilder, callDepth);
42 adjustMinimalIndent(stringBuilder);
43 addTabs(stringBuilder);
44 stringBuilder.append(mesasge);
45 System.out.println(stringBuilder.toString());
46 }
47
48 private static final int EXPECTED_STACK_DEPTH = 4;
49

Callers 6

debugMethod · 0.95
logMethod · 0.95
loggMethod · 0.95
warnMethod · 0.95
errorMethod · 0.95
maybeLogMethod · 0.95

Calls 4

addCallLocationMethod · 0.95
adjustMinimalIndentMethod · 0.95
addTabsMethod · 0.95
toStringMethod · 0.45

Tested by

no test coverage detected