You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@nemo.apache.org by GitBox <gi...@apache.org> on 2018/11/02 05:37:44 UTC

[GitHub] seojangho closed pull request #143: [NEMO-241] ASCII art for Nemo job launching

seojangho closed pull request #143: [NEMO-241] ASCII art for Nemo job launching
URL: https://github.com/apache/incubator-nemo/pull/143
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/client/src/main/java/org/apache/nemo/client/JobLauncher.java b/client/src/main/java/org/apache/nemo/client/JobLauncher.java
index 5a54e6b15..00d1ba171 100644
--- a/client/src/main/java/org/apache/nemo/client/JobLauncher.java
+++ b/client/src/main/java/org/apache/nemo/client/JobLauncher.java
@@ -60,6 +60,18 @@
  * Job launcher.
  */
 public final class JobLauncher {
+
+  static {
+    System.out.println(
+        "\nPowered by\n"
+          + "    _   __                   \n"
+          + "   / | / /__  ____ ___  ____ \n"
+          + "  /  |/ / _ \\/ __ `__ \\/ __ \\\n"
+          + " / /|  /  __/ / / / / / /_/ /\n"
+          + "/_/ |_/\\___/_/ /_/ /_/\\____/ \n"
+    );
+  }
+
   private static final Tang TANG = Tang.Factory.getTang();
   private static final Logger LOG = LoggerFactory.getLogger(JobLauncher.class.getName());
   private static final int LOCAL_NUMBER_OF_EVALUATORS = 100; // hopefully large enough for our use....


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services