public static void main()

in java/src/main/java/bazel/bootcamp/JavaLoggingClient.java [8:19]


  public static void main(String[] args) throws Exception {
    JavaLoggingClientLibrary client = new JavaLoggingClientLibrary("localhost", 50051);
    System.out.println(
        "Enter log messages to send to the server, enter 'exit' to stop the client.");
    Scanner scanner = new Scanner(System.in);
    String message = scanner.nextLine();
    while (!message.equals("exit")) {
      client.sendLogMessageToServer(message);
      message = scanner.next();
    }
    client.shutdown();
  }