Home / Function/ println() — spring-boot Function Reference

println() — spring-boot Function Reference

Architecture documentation for the println() function in StandardStackTracePrinter.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  9351fac8_af7d_de08_db35_381c6a19f815["println()"]
  ea3c822b_d0c6_fbcc_2125_8ba5b52034d9["circularReference()"]
  ea3c822b_d0c6_fbcc_2125_8ba5b52034d9 -->|calls| 9351fac8_af7d_de08_db35_381c6a19f815
  8aaecaea_700b_6c09_8d90_9e6d0ebed2e0["thrown()"]
  8aaecaea_700b_6c09_8d90_9e6d0ebed2e0 -->|calls| 9351fac8_af7d_de08_db35_381c6a19f815
  97521ab9_667b_94a1_3018_789d32b2ef2f["at()"]
  97521ab9_667b_94a1_3018_789d32b2ef2f -->|calls| 9351fac8_af7d_de08_db35_381c6a19f815
  7b7513fc_a6c6_b8f0_0e62_401bbe98737e["omittedFilteredFrames()"]
  7b7513fc_a6c6_b8f0_0e62_401bbe98737e -->|calls| 9351fac8_af7d_de08_db35_381c6a19f815
  00c3a292_9851_d353_6b1d_472ba85cedc1["omittedCommonFrames()"]
  00c3a292_9851_d353_6b1d_472ba85cedc1 -->|calls| 9351fac8_af7d_de08_db35_381c6a19f815
  style 9351fac8_af7d_de08_db35_381c6a19f815 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/main/java/org/springframework/boot/logging/StandardStackTracePrinter.java lines 382–391

		void println(String indent, String string) throws IOException {
			if (this.remaining > 0) {
				String line = indent + string + StandardStackTracePrinter.this.lineSeparator;
				if (line.length() > this.remaining) {
					line = line.substring(0, this.remaining) + ELLIPSIS;
				}
				this.out.append(line);
				this.remaining -= line.length();
			}
		}

Domain

Subdomains

Called By

  • at()
  • circularReference()
  • omittedCommonFrames()
  • omittedFilteredFrames()
  • thrown()

Frequently Asked Questions

What does println() do?
println() is a function in the spring-boot codebase.
What calls println()?
println() is called by 5 function(s): at, circularReference, omittedCommonFrames, omittedFilteredFrames, thrown.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free