Skip to content

Commit

Permalink
add sylph logo
Browse files Browse the repository at this point in the history
  • Loading branch information
ideal committed Aug 29, 2018
1 parent 67df3db commit 42cc4e2
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions sylph-main/src/main/java/ideal/sylph/main/SylphMaster.java
Expand Up @@ -36,6 +36,15 @@ public final class SylphMaster
private SylphMaster() {}

private static final Logger logger = LoggerFactory.getLogger(SylphMaster.class);
private static final String logo = " *_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*_*\n" +
" | Welcome to __ __ ______ |\n" +
" | . _____ __ __ / / ____ / /_ \\ \\ \\ \\ |\n" +
" | /|\\ / ___/ / / / / / / / __ \\ / __ \\ \\ \\ \\ \\ |\n" +
" |( | ) _\\__ \\ / /_/ / / / / /_/ / / / / / ) ) ) ) |\n" +
" | \\|/ /____/ \\__, / /_/ / .___/ /_/ /_/ / / / / |\n" +
" | ' /____/ /_/ /_/_/_/ |\n" +
" | :: Sylph :: version = (v0.1.0-SNAPSHOT) |\n" +
" *---------------------------------------------------*";

public static void main(String[] args)
{
Expand All @@ -52,6 +61,7 @@ public static void main(String[] args)
injector.getInstance(JobManager.class).start();
injector.getInstance(ControllerApp.class).start();
//ProcessHandle.current().pid()
logger.info("\n" + logo);
logger.info("======== SERVER STARTED this pid is {}========");
}
catch (Throwable e) {
Expand Down

0 comments on commit 42cc4e2

Please sign in to comment.