Package com.hubspot.singularity.logwatcher.config.test

Examples of com.hubspot.singularity.logwatcher.config.test.SingularityLogWatcherTestModule


    modules.add(new SingularityLogWatcherModule());

    if (args.length > 0) {
      if (args[0].equals("--test")) {
        System.out.println("Using test module...");
        modules.add(new SingularityLogWatcherTestModule());
      } else if (args[0].equals("--noop")) {
        System.out.println("Using noop module...");
        modules.add(new SingularityLogWatcherNoopModule());
      }
    } else {
View Full Code Here

TOP

Related Classes of com.hubspot.singularity.logwatcher.config.test.SingularityLogWatcherTestModule

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.