-
Notifications
You must be signed in to change notification settings - Fork 470
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1847 from dotCMS/issue-1846-ascii-art
Issue 1846 ascii art
- Loading branch information
Showing
2 changed files
with
42 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
package com.dotcms.util; | ||
|
||
import com.dotmarketing.util.Logger; | ||
|
||
|
||
public class AsciiArt { | ||
|
||
private static boolean artDone = false; | ||
|
||
public static void doArt(){ | ||
|
||
if(artDone) return; | ||
artDone=true; | ||
|
||
Logger.info(com.dotcms.util.AsciiArt.class, " "); | ||
Logger.info(com.dotcms.util.AsciiArt.class, " "); | ||
Logger.info(com.dotcms.util.AsciiArt.class, " "); | ||
Logger.info(com.dotcms.util.AsciiArt.class, " OOOO 7777777 7777 7777 77777777 "); | ||
Logger.info(com.dotcms.util.AsciiArt.class, " OOOO OO 777777777 77777 77777 77777777 "); | ||
Logger.info(com.dotcms.util.AsciiArt.class, " OOOO OOO 77777 777777 77777 7777 "); | ||
Logger.info(com.dotcms.util.AsciiArt.class, " OOOOOOOOOO OOOOOOOO OOOOOOOOO 7777 7777777 777777 7777 "); | ||
Logger.info(com.dotcms.util.AsciiArt.class, " OOOO OOOOO OOOO OOOO OOOO 7777 7777777 7777777 777777 "); | ||
Logger.info(com.dotcms.util.AsciiArt.class, " OOOO OOOO OOO OOOO OOOO 7777 77777777 777 7777 777777 "); | ||
Logger.info(com.dotcms.util.AsciiArt.class, " OOOO OOOO OOOO OOOO OOOO 7777 777 777 777 7777 7777 "); | ||
Logger.info(com.dotcms.util.AsciiArt.class, " OOOO OOOO OOO OOOO OOOO 77777 777 777777 7777 7777 "); | ||
Logger.info(com.dotcms.util.AsciiArt.class, " OOOO OOOO OOOO OOO OOOO 77777 777 7777 7777 7777 "); | ||
Logger.info(com.dotcms.util.AsciiArt.class, " OOOOOOOOOO OOOOOOOO OOOOO 777777777 777 7777 7777 777777777 "); | ||
Logger.info(com.dotcms.util.AsciiArt.class, " "); | ||
Logger.info(com.dotcms.util.AsciiArt.class, " Web Content Management System "); | ||
// Logger.info(com.dotcms.util.AsciiArt.class, " copyright " + Calendar.getInstance().get(Calendar.YEAR) + ", dotCMS LLC"); | ||
Logger.info(com.dotcms.util.AsciiArt.class, " "); | ||
Logger.info(com.dotcms.util.AsciiArt.class, " "); | ||
} | ||
|
||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters