Changeset 19177 in josm


Ignore:
Timestamp:
2024-08-09T11:14:19+02:00 (3 months ago)
Author:
stoecker
Message:

fix #23849 - provide option to reduce loglevel to warnings

Location:
trunk/src/org/openstreetmap/josm
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/validation/ValidatorCLI.java

    r19112 r19177  
    9797        /** --change-file=<change-file>         Add a change file */
    9898        CHANGE_FILE(true, 'c', OptionParser.OptionCount.MULTIPLE),
     99        /** --warn                                    Set logging level to warn */
     100        WARN(false, '*'),
    99101        /** --debug                                   Set logging level to debug */
    100102        DEBUG(false, '*'),
    101103        /** --trace                                   Set logging level to trace */
    102104        TRACE(false, '*'),
    103         /** --language=<language>                Set the language */
     105        /** --language=<language>               Set the language */
    104106        LANGUAGE(true, 'l'),
    105         /** --load-preferences=<url-to-xml>      Changes preferences according to the XML file */
     107        /** --load-preferences=<url-to-xml>     Changes preferences according to the XML file */
    106108        LOAD_PREFERENCES(true, 'p'),
    107         /** --set=<key>=<value>            Set preference key to value */
     109        /** --set=<key>=<value>           Set preference key to value */
    108110        SET(true, 's');
    109111
     
    412414            showHelp();
    413415            Lifecycle.exitJosm(true, 0);
     416            break;
     417        case WARN:
     418            this.logLevel = Logging.LEVEL_WARN;
    414419            break;
    415420        case DEBUG:
  • trunk/src/org/openstreetmap/josm/gui/MainApplication.java

    r19109 r19177  
    707707                "\t--status-report                           "+ShowStatusReportAction.ACTION_DESCRIPTION+"\n\n"+
    708708                "\t--debug                                   "+tr("Print debugging messages to console")+"\n\n"+
     709                "\t--warn                                    "+tr("Print only warning or error messages to console")+"\n\n"+
    709710                "\t--skip-plugins                            "+tr("Skip loading plugins")+"\n\n"+
    710711                "\t--offline=" + Arrays.stream(OnlineResource.values()).map(OnlineResource::name).collect(
  • trunk/src/org/openstreetmap/josm/gui/ProgramArguments.java

    r17637 r19177  
    3737        /** {@code --status-report} Show status report with useful information that can be attached to bugs */
    3838        STATUS_REPORT(false),
     39        /** --warn                                     Print only warning messages to console */
     40        WARN(false),
    3941        /** --debug                                    Print debugging messages to console */
    4042        DEBUG(false),
     
    187189        } else if (hasOption(Option.DEBUG)) {
    188190            return Logging.LEVEL_DEBUG;
     191        } else if (hasOption(Option.WARN)) {
     192            return Logging.LEVEL_WARN;
    189193        } else {
    190194            return Logging.LEVEL_INFO;
Note: See TracChangeset for help on using the changeset viewer.