diff --git a/CHANGELOG.md b/CHANGELOG.md index 75d492b..26341d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,4 +4,5 @@ All notable changes to the Zowe Launcher package will be documented in this file This repo is part of the app-server Zowe Component, and the change logs here may appear on Zowe.org in that section. ## 2.13.0 +- Enhancement: Launcher prints a message at the beginning of startup to alert users whether or not their log output has long enough lines to be readable if sent to support. - Added a wrapper for wtoPrintf3 \ No newline at end of file diff --git a/src/main.c b/src/main.c index f59b52e..deb7899 100644 --- a/src/main.c +++ b/src/main.c @@ -1627,6 +1627,7 @@ int main(int argc, char **argv) { } INFO(MSG_LAUNCHER_START); + INFO(MSG_LINE_LENGTH); printf_wto(MSG_LAUNCHER_START); // Manual sys log print (messages not set here yet) zl_config_t config = read_config(argc, argv); diff --git a/src/msg.h b/src/msg.h index db2f15d..a862cc6 100644 --- a/src/msg.h +++ b/src/msg.h @@ -88,6 +88,7 @@ #define MSG_CFG_LOAD_FAIL MSG_PREFIX "0072E" " Launcher Could not load configurations\n" #define MSG_CFG_SCHEMA_FAIL MSG_PREFIX "0073E" " Launcher Could not load schemas, status=%d\n" #define MSG_NO_LOG_CONTEXT MSG_PREFIX "0074E" " Log context was not created\n" +#define MSG_LINE_LENGTH "-- If you cant see '500' at the end of the line, your log is too short to read!80--------90------ 100----------------------125----------------------150----------------------175----------------------200----------------------225----------------------250----------------------275----------------------300----------------------325----------------------350----------------------375----------------------400----------------------425----------------------450----------------------475----------------------500\n" #endif // MSG_H