Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
wezell committed Jan 15, 2013
1 parent f24c186 commit e70bc90
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/com/dotcms/util/AsciiArt.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ public class AsciiArt {
public static void doArt(){

if(artDone) return;
artDone=true;



artDone=true;

Logger.info(com.dotcms.util.AsciiArt.class, " ");
Logger.info(com.dotcms.util.AsciiArt.class, " ");
Expand All @@ -30,6 +33,13 @@ public static void doArt(){
// 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, " ");

try {
Thread.sleep(1000);
} catch (InterruptedException e) {
//Logger.error(AsciiArt.class,e.getMessage(),e);
}

}


Expand Down

0 comments on commit e70bc90

Please sign in to comment.