logArguments() — spring-boot Function Reference
Architecture documentation for the logArguments() function in AbstractRunMojo.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 47188f5f_cc3f_0091_dfcf_86ec9540f84b["logArguments()"] 2fcf2dff_5b8b_279e_9a1d_6662032bafa2["addArgs()"] 2fcf2dff_5b8b_279e_9a1d_6662032bafa2 -->|calls| 47188f5f_cc3f_0091_dfcf_86ec9540f84b b5bb207b_cc6a_30d1_54cc_cc6cb12fd667["determineEnvironmentVariables()"] b5bb207b_cc6a_30d1_54cc_cc6cb12fd667 -->|calls| 47188f5f_cc3f_0091_dfcf_86ec9540f84b 120d18f0_53f2_dc9d_755e_ee67a5f3c241["addJvmArgs()"] 120d18f0_53f2_dc9d_755e_ee67a5f3c241 -->|calls| 47188f5f_cc3f_0091_dfcf_86ec9540f84b 5464a157_765f_843c_a813_525e9fe297de["addActiveProfileArgument()"] 5464a157_765f_843c_a813_525e9fe297de -->|calls| 47188f5f_cc3f_0091_dfcf_86ec9540f84b style 47188f5f_cc3f_0091_dfcf_86ec9540f84b fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
build-plugin/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/AbstractRunMojo.java lines 428–433
private void logArguments(String name, String[] args) {
if (getLog().isDebugEnabled()) {
String message = (args.length == 1) ? name + ": " : name + "s: ";
getLog().debug(Arrays.stream(args).collect(Collectors.joining(" ", message, "")));
}
}
Domain
Subdomains
Source
Frequently Asked Questions
What does logArguments() do?
logArguments() is a function in the spring-boot codebase.
What calls logArguments()?
logArguments() is called by 4 function(s): addActiveProfileArgument, addArgs, addJvmArgs, determineEnvironmentVariables.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free