Example usage for org.springframework.boot.builder SpringApplicationBuilder toString

List of usage examples for org.springframework.boot.builder SpringApplicationBuilder toString

Introduction

In this page you can find the example usage for org.springframework.boot.builder SpringApplicationBuilder toString.

Prototype

public String toString() 

Source Link

Document

Returns a string representation of the object.

Usage

From source file:com.sky.HibakeSeoBootApplication.java

@Override
protected SpringApplicationBuilder configure(final SpringApplicationBuilder application) {
    log.info(application.toString());

    return application.sources(HibakeSeoBootApplication.class);
}