Uploaded image for project: 'Geode'
  1. Geode
  2. GEODE-10055

AbstractLauncher print info and debug with stderr instead of stdout

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • 1.12.8, 1.13.7, 1.14.3
    • 1.16.0
    • logging

    Description

      The problem happened with locator/server launcher logs which are printed with stderr in both cases, for info and debug.

        protected void info(final Object message, final Object... args) {
          if (args != null && args.length > 0) {
            System.err.printf(message.toString(), args);
          } else {
            System.err.print(message);
          }
        }
      

      And when it is redirected to some tools it represents it like an error as it is printed with stderr, instead of stdout.

      Attachments

        Issue Links

          Activity

            People

              mkevo Mario Kevo
              mkevo Mario Kevo
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: