From b8a941f4c84ca7aba5e322b09ab896d3524e35f1 Mon Sep 17 00:00:00 2001 From: 1000TurquoisePogs Date: Fri, 27 Feb 2026 14:59:10 -0500 Subject: [PATCH 01/15] Restore dead core loggers page Signed-off-by: 1000TurquoisePogs --- .../app-framework/core-loggers.md} | 0 sidebars.js | 1 + .../app-framework/core-loggers.md} | 0 versioned_sidebars/version-v2.18.x-sidebars.json | 3 ++- 4 files changed, 3 insertions(+), 1 deletion(-) rename docs/{extend/extend-desktop/mvd-core-loggers.md => troubleshoot/app-framework/core-loggers.md} (100%) rename versioned_docs/version-v2.18.x/{extend/extend-desktop/mvd-core-loggers.md => troubleshoot/app-framework/core-loggers.md} (100%) diff --git a/docs/extend/extend-desktop/mvd-core-loggers.md b/docs/troubleshoot/app-framework/core-loggers.md similarity index 100% rename from docs/extend/extend-desktop/mvd-core-loggers.md rename to docs/troubleshoot/app-framework/core-loggers.md diff --git a/sidebars.js b/sidebars.js index c77fe6a95c..b8588b4c91 100644 --- a/sidebars.js +++ b/sidebars.js @@ -847,6 +847,7 @@ module.exports = { "troubleshoot/app-framework/app-mustgather", "troubleshoot/app-framework/app-issue", "troubleshoot/app-framework/appfw-tracing", + "troubleshoot/app-framework/core-loggers", "troubleshoot/app-framework/app-return-codes", "troubleshoot/app-framework/appserver-error-codes", "troubleshoot/app-framework/zss-error-codes", diff --git a/versioned_docs/version-v2.18.x/extend/extend-desktop/mvd-core-loggers.md b/versioned_docs/version-v2.18.x/troubleshoot/app-framework/core-loggers.md similarity index 100% rename from versioned_docs/version-v2.18.x/extend/extend-desktop/mvd-core-loggers.md rename to versioned_docs/version-v2.18.x/troubleshoot/app-framework/core-loggers.md diff --git a/versioned_sidebars/version-v2.18.x-sidebars.json b/versioned_sidebars/version-v2.18.x-sidebars.json index 549cc5f6b7..c0aceef6d7 100644 --- a/versioned_sidebars/version-v2.18.x-sidebars.json +++ b/versioned_sidebars/version-v2.18.x-sidebars.json @@ -1024,6 +1024,7 @@ "troubleshoot/app-framework/app-mustgather", "troubleshoot/app-framework/app-issue", "troubleshoot/app-framework/appfw-tracing", + "troubleshoot/app-framework/core-loggers", "troubleshoot/app-framework/app-return-codes", "troubleshoot/app-framework/appserver-error-codes", "troubleshoot/app-framework/zss-error-codes", @@ -1277,4 +1278,4 @@ "href": "https://github.com/zowe/docs-site/tree/master/tpsr/tpsr-v2.18.4.md" } ] -} \ No newline at end of file +} From 8f1f4b93086ff1861249def376d94a74f49b3278 Mon Sep 17 00:00:00 2001 From: 1000TurquoisePogs Date: Fri, 27 Feb 2026 15:07:09 -0500 Subject: [PATCH 02/15] Remove duplicate aux page Signed-off-by: 1000TurquoisePogs --- .../user-guide/configure-auxiliary-address-space.md | 13 ------------- .../user-guide/configure-auxiliary-address-space.md | 13 ------------- 2 files changed, 26 deletions(-) delete mode 100644 docs/user-guide/configure-auxiliary-address-space.md delete mode 100644 versioned_docs/version-v2.18.x/user-guide/configure-auxiliary-address-space.md diff --git a/docs/user-guide/configure-auxiliary-address-space.md b/docs/user-guide/configure-auxiliary-address-space.md deleted file mode 100644 index dbbd78e5a1..0000000000 --- a/docs/user-guide/configure-auxiliary-address-space.md +++ /dev/null @@ -1,13 +0,0 @@ -# Zowe Auxiliary Address space - -The cross memory server runs as a started task `ZWESISTC` that uses the load module `ZWESIS01`. - -In some use cases, the Zowe cross memory server has to spawn child address spaces, which are known as auxiliary (AUX) address spaces. The auxiliary address spaces run as the started task `ZWESASTC` using the load module `ZWESAUX` and are started, controlled, and stopped by the cross memory server. - -An example of when an auxiliary address space is used is for a system service that requires supervisor state but cannot run in cross-memory mode. The service can be run in an AUX address space which is invoked by the Cross Memory Server acting as a proxy for unauthorized users of the service. - -Do not install the Zowe auxiliary address space unless a Zowe extension product's installation guide explicitly asks for it to be done. This will occur if the extension product requires services of Zowe that cannot be performed by the cross memory server and an auxiliary address space needs to be started. - -A default installation of Zowe does not require auxiliary address spaces to be configured. - -You do not start or stop the ZWESASTC manually. \ No newline at end of file diff --git a/versioned_docs/version-v2.18.x/user-guide/configure-auxiliary-address-space.md b/versioned_docs/version-v2.18.x/user-guide/configure-auxiliary-address-space.md deleted file mode 100644 index dbbd78e5a1..0000000000 --- a/versioned_docs/version-v2.18.x/user-guide/configure-auxiliary-address-space.md +++ /dev/null @@ -1,13 +0,0 @@ -# Zowe Auxiliary Address space - -The cross memory server runs as a started task `ZWESISTC` that uses the load module `ZWESIS01`. - -In some use cases, the Zowe cross memory server has to spawn child address spaces, which are known as auxiliary (AUX) address spaces. The auxiliary address spaces run as the started task `ZWESASTC` using the load module `ZWESAUX` and are started, controlled, and stopped by the cross memory server. - -An example of when an auxiliary address space is used is for a system service that requires supervisor state but cannot run in cross-memory mode. The service can be run in an AUX address space which is invoked by the Cross Memory Server acting as a proxy for unauthorized users of the service. - -Do not install the Zowe auxiliary address space unless a Zowe extension product's installation guide explicitly asks for it to be done. This will occur if the extension product requires services of Zowe that cannot be performed by the cross memory server and an auxiliary address space needs to be started. - -A default installation of Zowe does not require auxiliary address spaces to be configured. - -You do not start or stop the ZWESASTC manually. \ No newline at end of file From a03a34633db11d7a5ada340d130c759c6ae23141 Mon Sep 17 00:00:00 2001 From: 1000TurquoisePogs Date: Fri, 27 Feb 2026 15:07:37 -0500 Subject: [PATCH 03/15] Update formatting of core loggers page Signed-off-by: 1000TurquoisePogs --- .../app-framework/core-loggers.md | 27 +++++++++++-------- .../app-framework/core-loggers.md | 27 +++++++++++-------- 2 files changed, 32 insertions(+), 22 deletions(-) diff --git a/docs/troubleshoot/app-framework/core-loggers.md b/docs/troubleshoot/app-framework/core-loggers.md index 90b206ecd0..3156293a22 100644 --- a/docs/troubleshoot/app-framework/core-loggers.md +++ b/docs/troubleshoot/app-framework/core-loggers.md @@ -1,6 +1,8 @@ -This is a list of core loggers (and descriptions of each) that you can enable and increase verbosity on within the logging framework. See [the logging utility](mvd-logutility.md) for more info. +# Primary loggers -# Loggers for Zowe Application Server Core +This is a list of primary loggers (and descriptions of each) that you can enable and increase verbosity on within the logging framework. See [enabling tracing](./appfw-tracing.md) for more info. + +## Loggers for app-server component The log prefix for the Zowe Application Server is `_zsf`, which is used by the server framework. (Applications and plug-ins that are attached to the server do not use the `_zsf` prefix.) The following are the logger names that you can specify: * **_zsf.bootstrap**: Logging that pertains to the startup of the server. @@ -14,16 +16,8 @@ The following are the logger names that you can specify: * **_zsf.routing**: Logging for dispatching network requests to plug-in dataservices. * **_zsf.network**: Logging for the HTTPS server status (connection, ports, IP, and so on). -# Zowe App Server Log levels -* 0: SEVERE -* 1: WARNING -* 2 (Default): INFO -* 3: FINE -* 4: FINER -* 5: FINEST - -# Loggers for ZSS Server Core +## Loggers for zss component The log prefix for ZSS is `_zss`. The following are the logger names that you can specify: * **_zss.traceLevel**: Controls general server logging verbosity. * **_zss.fileTrace**: Logs file serving behavior (if file serving is enabled). @@ -35,3 +29,14 @@ The log prefix for ZSS is `_zss`. The following are the logger names that you ca * **_zss.httpCloseConversationTrace**: Logs HTTP behavior for when an HTTP conversation ends. * **_zss.httpAuthTrace**: Logs behavior for session security. * **_zss.jwtTrace**: Logs the JSON Web Tokens. + +## Log levels +Most loggers have levels ranging from 0 to 5 where 0 is the least verbose and 5 is the most verbose. + +* 0: SEVERE +* 1: WARNING +* 2 (Default): INFO +* 3: FINE +* 4: FINER +* 5: FINEST + diff --git a/versioned_docs/version-v2.18.x/troubleshoot/app-framework/core-loggers.md b/versioned_docs/version-v2.18.x/troubleshoot/app-framework/core-loggers.md index 90b206ecd0..3156293a22 100644 --- a/versioned_docs/version-v2.18.x/troubleshoot/app-framework/core-loggers.md +++ b/versioned_docs/version-v2.18.x/troubleshoot/app-framework/core-loggers.md @@ -1,6 +1,8 @@ -This is a list of core loggers (and descriptions of each) that you can enable and increase verbosity on within the logging framework. See [the logging utility](mvd-logutility.md) for more info. +# Primary loggers -# Loggers for Zowe Application Server Core +This is a list of primary loggers (and descriptions of each) that you can enable and increase verbosity on within the logging framework. See [enabling tracing](./appfw-tracing.md) for more info. + +## Loggers for app-server component The log prefix for the Zowe Application Server is `_zsf`, which is used by the server framework. (Applications and plug-ins that are attached to the server do not use the `_zsf` prefix.) The following are the logger names that you can specify: * **_zsf.bootstrap**: Logging that pertains to the startup of the server. @@ -14,16 +16,8 @@ The following are the logger names that you can specify: * **_zsf.routing**: Logging for dispatching network requests to plug-in dataservices. * **_zsf.network**: Logging for the HTTPS server status (connection, ports, IP, and so on). -# Zowe App Server Log levels -* 0: SEVERE -* 1: WARNING -* 2 (Default): INFO -* 3: FINE -* 4: FINER -* 5: FINEST - -# Loggers for ZSS Server Core +## Loggers for zss component The log prefix for ZSS is `_zss`. The following are the logger names that you can specify: * **_zss.traceLevel**: Controls general server logging verbosity. * **_zss.fileTrace**: Logs file serving behavior (if file serving is enabled). @@ -35,3 +29,14 @@ The log prefix for ZSS is `_zss`. The following are the logger names that you ca * **_zss.httpCloseConversationTrace**: Logs HTTP behavior for when an HTTP conversation ends. * **_zss.httpAuthTrace**: Logs behavior for session security. * **_zss.jwtTrace**: Logs the JSON Web Tokens. + +## Log levels +Most loggers have levels ranging from 0 to 5 where 0 is the least verbose and 5 is the most verbose. + +* 0: SEVERE +* 1: WARNING +* 2 (Default): INFO +* 3: FINE +* 4: FINER +* 5: FINEST + From 8aa27749613a404e86e309e51305c482042db1b5 Mon Sep 17 00:00:00 2001 From: 1000TurquoisePogs Date: Fri, 27 Feb 2026 15:08:50 -0500 Subject: [PATCH 04/15] Rename Signed-off-by: 1000TurquoisePogs --- .../app-framework/{core-loggers.md => primary-loggers.md} | 0 sidebars.js | 2 +- .../app-framework/{core-loggers.md => primary-loggers.md} | 0 versioned_sidebars/version-v2.18.x-sidebars.json | 2 +- 4 files changed, 2 insertions(+), 2 deletions(-) rename docs/troubleshoot/app-framework/{core-loggers.md => primary-loggers.md} (100%) rename versioned_docs/version-v2.18.x/troubleshoot/app-framework/{core-loggers.md => primary-loggers.md} (100%) diff --git a/docs/troubleshoot/app-framework/core-loggers.md b/docs/troubleshoot/app-framework/primary-loggers.md similarity index 100% rename from docs/troubleshoot/app-framework/core-loggers.md rename to docs/troubleshoot/app-framework/primary-loggers.md diff --git a/sidebars.js b/sidebars.js index b8588b4c91..069b5915b0 100644 --- a/sidebars.js +++ b/sidebars.js @@ -847,7 +847,7 @@ module.exports = { "troubleshoot/app-framework/app-mustgather", "troubleshoot/app-framework/app-issue", "troubleshoot/app-framework/appfw-tracing", - "troubleshoot/app-framework/core-loggers", + "troubleshoot/app-framework/primary-loggers", "troubleshoot/app-framework/app-return-codes", "troubleshoot/app-framework/appserver-error-codes", "troubleshoot/app-framework/zss-error-codes", diff --git a/versioned_docs/version-v2.18.x/troubleshoot/app-framework/core-loggers.md b/versioned_docs/version-v2.18.x/troubleshoot/app-framework/primary-loggers.md similarity index 100% rename from versioned_docs/version-v2.18.x/troubleshoot/app-framework/core-loggers.md rename to versioned_docs/version-v2.18.x/troubleshoot/app-framework/primary-loggers.md diff --git a/versioned_sidebars/version-v2.18.x-sidebars.json b/versioned_sidebars/version-v2.18.x-sidebars.json index c0aceef6d7..1688b2e46f 100644 --- a/versioned_sidebars/version-v2.18.x-sidebars.json +++ b/versioned_sidebars/version-v2.18.x-sidebars.json @@ -1024,7 +1024,7 @@ "troubleshoot/app-framework/app-mustgather", "troubleshoot/app-framework/app-issue", "troubleshoot/app-framework/appfw-tracing", - "troubleshoot/app-framework/core-loggers", + "troubleshoot/app-framework/primary-loggers", "troubleshoot/app-framework/app-return-codes", "troubleshoot/app-framework/appserver-error-codes", "troubleshoot/app-framework/zss-error-codes", From 4a21e5341938303caed4be74ec3291af2ca4fc66 Mon Sep 17 00:00:00 2001 From: ArooshLele Date: Mon, 2 Mar 2026 19:11:22 +0530 Subject: [PATCH 05/15] Update primary-loggers.md (#4942) I put the entries within a table and made minor edits to the text, and added a 3rd column in the Log Level table. Signed-off-by: ArooshLele --- .../app-framework/primary-loggers.md | 66 ++++++++++--------- 1 file changed, 36 insertions(+), 30 deletions(-) diff --git a/docs/troubleshoot/app-framework/primary-loggers.md b/docs/troubleshoot/app-framework/primary-loggers.md index 3156293a22..28e8043c26 100644 --- a/docs/troubleshoot/app-framework/primary-loggers.md +++ b/docs/troubleshoot/app-framework/primary-loggers.md @@ -1,42 +1,48 @@ # Primary loggers -This is a list of primary loggers (and descriptions of each) that you can enable and increase verbosity on within the logging framework. See [enabling tracing](./appfw-tracing.md) for more info. +This is a list of primary loggers and their descriptions. You can enable the loggers and increase the logging verbosity within the logging framework. For more information, see [Enabling tracing](./appfw-tracing.md). ## Loggers for app-server component The log prefix for the Zowe Application Server is `_zsf`, which is used by the server framework. (Applications and plug-ins that are attached to the server do not use the `_zsf` prefix.) The following are the logger names that you can specify: -* **_zsf.bootstrap**: Logging that pertains to the startup of the server. -* **_zsf.auth**: Logging for network calls that must be checked for authentication and authorization purposes. -* **_zsf.static**: Logging of the serving of static files (such as images) from an application's /web folder. -* **_zsf.child**: Logging of child processes, if any. -* **_zsf.utils**: Logging for miscellaneous utilities that the server relies upon. -* **_zsf.proxy**: Logging for proxies that are set up in the server. -* **_zsf.install**: Logging for the installation of plug-ins. -* **_zsf.apiml**: Logging for communication with the api mediation layer. -* **_zsf.routing**: Logging for dispatching network requests to plug-in dataservices. -* **_zsf.network**: Logging for the HTTPS server status (connection, ports, IP, and so on). +Logger name | Description +---|--- +**_zsf.bootstrap** | Logging that pertains to the startup of the server. +**_zsf.auth** | Logging for network calls that must be checked for authentication and authorization purposes. +**_zsf.static** | Logging of the serving of static files (such as images) from an application's folder or a web folder. +**_zsf.child** | Logging of child processes, if any. +**_zsf.utils** | Logging for miscellaneous utilities that the server relies upon. +**_zsf.proxy** | Logging for proxies that are set up in the server. +**_zsf.install** | Logging for the installation of plug-ins. +**_zsf.apiml** | Logging for the communication with the API Mediation Layer. +**_zsf.routing** | Logging for dispatching network requests to plug-in dataservices. +**_zsf.network** | Logging for the HTTPS server status (connection, ports, IP, etc). ## Loggers for zss component -The log prefix for ZSS is `_zss`. The following are the logger names that you can specify: -* **_zss.traceLevel**: Controls general server logging verbosity. -* **_zss.fileTrace**: Logs file serving behavior (if file serving is enabled). -* **_zss.socketTrace**: Logs general TCP Socket behavior. -* **_zss.httpParseTrace**: Logs parsing of HTTP messages. -* **_zss.httpDispatchTrace**: Logs dispatching of HTTP messages to dataservices. -* **_zss.httpHeadersTrace**: Logs parsing and setting of HTTP headers. -* **_zss.httpSocketTrace**: Logs TCP socket behavior for HTTP. -* **_zss.httpCloseConversationTrace**: Logs HTTP behavior for when an HTTP conversation ends. -* **_zss.httpAuthTrace**: Logs behavior for session security. -* **_zss.jwtTrace**: Logs the JSON Web Tokens. +The log prefix for ZSS is `_zss`. +The following are the logger names that you can specify: +Logger name | Description +---|--- +**_zss.traceLevel** | Controls the logging verbosity of the server. +**_zss.fileTrace** | Logs the behavior of file serving (if file serving is enabled). +**_zss.socketTrace** | Logs the behavior of a general TCP Socket. +**_zss.httpParseTrace** | Logs the parsing of HTTP messages. +**_zss.httpDispatchTrace** | Logs the dispatching of HTTP messages to dataservices. +**_zss.httpHeadersTrace** | Logs the parsing and setting up of HTTP headers. +**_zss.httpSocketTrace** | Logs the behavior of a TCP socket for HTTP. +**_zss.httpCloseConversationTrace** | Logs the behavior of HTTP when an HTTP conversation ends. +**_zss.httpAuthTrace** | Logs the behavior of the security of a session. +**_zss.jwtTrace** | Logs the JSON Web Tokens. ## Log levels -Most loggers have levels ranging from 0 to 5 where 0 is the least verbose and 5 is the most verbose. - -* 0: SEVERE -* 1: WARNING -* 2 (Default): INFO -* 3: FINE -* 4: FINER -* 5: FINEST +Most loggers have levels ranging from 0 to 5, where 0 is the least verbose and 5 is the most verbose. +Log level | Verbosity +---|--- +0 | SEVERE | Denotes critical errors, application failure. +1 | WARNING | Denotes potential issues that need attention soon. +2 (Default) | INFO | Denotes general operational updates, normal functioning. +3 | FINE | Denotes detailed tracing information. +4 | FINER | Denotes more detailed tracing information. +5 | FINEST | Denotes extremely detailed tracing information which can be used for debugging. From c58dadc7338a5d7f7f13f9b54d7bf57385f55c5e Mon Sep 17 00:00:00 2001 From: ArooshLele Date: Mon, 2 Mar 2026 19:16:10 +0530 Subject: [PATCH 06/15] Update primary-loggers.md Signed-off-by: ArooshLele --- docs/troubleshoot/app-framework/primary-loggers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/troubleshoot/app-framework/primary-loggers.md b/docs/troubleshoot/app-framework/primary-loggers.md index 28e8043c26..11ec9b437b 100644 --- a/docs/troubleshoot/app-framework/primary-loggers.md +++ b/docs/troubleshoot/app-framework/primary-loggers.md @@ -38,7 +38,7 @@ Logger name | Description ## Log levels Most loggers have levels ranging from 0 to 5, where 0 is the least verbose and 5 is the most verbose. Log level | Verbosity ----|--- +---|---|--- 0 | SEVERE | Denotes critical errors, application failure. 1 | WARNING | Denotes potential issues that need attention soon. 2 (Default) | INFO | Denotes general operational updates, normal functioning. From ee0450bb1fd0b7df4424c25651199069aa020e24 Mon Sep 17 00:00:00 2001 From: ArooshLele Date: Mon, 2 Mar 2026 19:17:10 +0530 Subject: [PATCH 07/15] Update primary-loggers.md Signed-off-by: ArooshLele --- docs/troubleshoot/app-framework/primary-loggers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/troubleshoot/app-framework/primary-loggers.md b/docs/troubleshoot/app-framework/primary-loggers.md index 11ec9b437b..771d458f3d 100644 --- a/docs/troubleshoot/app-framework/primary-loggers.md +++ b/docs/troubleshoot/app-framework/primary-loggers.md @@ -38,7 +38,7 @@ Logger name | Description ## Log levels Most loggers have levels ranging from 0 to 5, where 0 is the least verbose and 5 is the most verbose. Log level | Verbosity ----|---|--- +---|---|---| 0 | SEVERE | Denotes critical errors, application failure. 1 | WARNING | Denotes potential issues that need attention soon. 2 (Default) | INFO | Denotes general operational updates, normal functioning. From f1f11a21495904cfe221d899a964fd6bf942b695 Mon Sep 17 00:00:00 2001 From: ArooshLele Date: Mon, 2 Mar 2026 19:18:12 +0530 Subject: [PATCH 08/15] Update primary-loggers.md Signed-off-by: ArooshLele --- docs/troubleshoot/app-framework/primary-loggers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/troubleshoot/app-framework/primary-loggers.md b/docs/troubleshoot/app-framework/primary-loggers.md index 771d458f3d..11ec9b437b 100644 --- a/docs/troubleshoot/app-framework/primary-loggers.md +++ b/docs/troubleshoot/app-framework/primary-loggers.md @@ -38,7 +38,7 @@ Logger name | Description ## Log levels Most loggers have levels ranging from 0 to 5, where 0 is the least verbose and 5 is the most verbose. Log level | Verbosity ----|---|---| +---|---|--- 0 | SEVERE | Denotes critical errors, application failure. 1 | WARNING | Denotes potential issues that need attention soon. 2 (Default) | INFO | Denotes general operational updates, normal functioning. From 8fd7028ecd94e1b3c4e90647928d68deb5d4ea79 Mon Sep 17 00:00:00 2001 From: ArooshLele Date: Mon, 2 Mar 2026 19:19:16 +0530 Subject: [PATCH 09/15] Update primary-loggers.md Signed-off-by: ArooshLele --- docs/troubleshoot/app-framework/primary-loggers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/troubleshoot/app-framework/primary-loggers.md b/docs/troubleshoot/app-framework/primary-loggers.md index 11ec9b437b..2723ccf787 100644 --- a/docs/troubleshoot/app-framework/primary-loggers.md +++ b/docs/troubleshoot/app-framework/primary-loggers.md @@ -38,7 +38,7 @@ Logger name | Description ## Log levels Most loggers have levels ranging from 0 to 5, where 0 is the least verbose and 5 is the most verbose. Log level | Verbosity ----|---|--- +---|---| 0 | SEVERE | Denotes critical errors, application failure. 1 | WARNING | Denotes potential issues that need attention soon. 2 (Default) | INFO | Denotes general operational updates, normal functioning. From ba2b97a69f0d7e8d50a8e8a8df16ac06d98f1c5e Mon Sep 17 00:00:00 2001 From: ArooshLele Date: Mon, 2 Mar 2026 19:24:56 +0530 Subject: [PATCH 10/15] Update primary-loggers.md Signed-off-by: ArooshLele --- .../app-framework/primary-loggers.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/troubleshoot/app-framework/primary-loggers.md b/docs/troubleshoot/app-framework/primary-loggers.md index 2723ccf787..0e74f5b82b 100644 --- a/docs/troubleshoot/app-framework/primary-loggers.md +++ b/docs/troubleshoot/app-framework/primary-loggers.md @@ -37,12 +37,12 @@ Logger name | Description ## Log levels Most loggers have levels ranging from 0 to 5, where 0 is the least verbose and 5 is the most verbose. -Log level | Verbosity ----|---| -0 | SEVERE | Denotes critical errors, application failure. -1 | WARNING | Denotes potential issues that need attention soon. -2 (Default) | INFO | Denotes general operational updates, normal functioning. -3 | FINE | Denotes detailed tracing information. -4 | FINER | Denotes more detailed tracing information. -5 | FINEST | Denotes extremely detailed tracing information which can be used for debugging. +| Log level | Verbosity | Information | +|---|---|---| +| 0 | SEVERE | Denotes critical errors, application failure. | +| 1 | WARNING | Denotes potential issues that need attention soon. | +| 2 (Default) | INFO | Denotes general operational updates, normal functioning. | +| 3 | FINE | Denotes detailed tracing information. | +| 4 | FINER | Denotes more detailed tracing information. | +| 5 | FINEST | Denotes extremely detailed tracing information which can be used for debugging. | From 5ced821787de297a89b2d48bc29339f0a9b10b49 Mon Sep 17 00:00:00 2001 From: ArooshLele Date: Mon, 2 Mar 2026 19:30:13 +0530 Subject: [PATCH 11/15] Update primary-loggers.md Signed-off-by: ArooshLele --- docs/troubleshoot/app-framework/primary-loggers.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/troubleshoot/app-framework/primary-loggers.md b/docs/troubleshoot/app-framework/primary-loggers.md index 0e74f5b82b..bfb0bed786 100644 --- a/docs/troubleshoot/app-framework/primary-loggers.md +++ b/docs/troubleshoot/app-framework/primary-loggers.md @@ -37,12 +37,12 @@ Logger name | Description ## Log levels Most loggers have levels ranging from 0 to 5, where 0 is the least verbose and 5 is the most verbose. -| Log level | Verbosity | Information | +| Verbosity | Log type | Log information | |---|---|---| -| 0 | SEVERE | Denotes critical errors, application failure. | +| 0 (least verbose) | SEVERE | Denotes critical errors, application failure. | | 1 | WARNING | Denotes potential issues that need attention soon. | | 2 (Default) | INFO | Denotes general operational updates, normal functioning. | | 3 | FINE | Denotes detailed tracing information. | | 4 | FINER | Denotes more detailed tracing information. | -| 5 | FINEST | Denotes extremely detailed tracing information which can be used for debugging. | +| 5 (most verbose) | FINEST | Denotes extremely detailed tracing information which can be used for debugging. | From 2cffbfed86309d840296ae44371e76bd326d3f2e Mon Sep 17 00:00:00 2001 From: ArooshLele Date: Mon, 2 Mar 2026 19:31:08 +0530 Subject: [PATCH 12/15] Update primary-loggers.md Signed-off-by: ArooshLele --- docs/troubleshoot/app-framework/primary-loggers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/troubleshoot/app-framework/primary-loggers.md b/docs/troubleshoot/app-framework/primary-loggers.md index bfb0bed786..5d2e674d23 100644 --- a/docs/troubleshoot/app-framework/primary-loggers.md +++ b/docs/troubleshoot/app-framework/primary-loggers.md @@ -39,10 +39,10 @@ Logger name | Description Most loggers have levels ranging from 0 to 5, where 0 is the least verbose and 5 is the most verbose. | Verbosity | Log type | Log information | |---|---|---| -| 0 (least verbose) | SEVERE | Denotes critical errors, application failure. | +| 0 ( least verbose ) | SEVERE | Denotes critical errors, application failure. | | 1 | WARNING | Denotes potential issues that need attention soon. | | 2 (Default) | INFO | Denotes general operational updates, normal functioning. | | 3 | FINE | Denotes detailed tracing information. | | 4 | FINER | Denotes more detailed tracing information. | -| 5 (most verbose) | FINEST | Denotes extremely detailed tracing information which can be used for debugging. | +| 5 ( most verbose ) | FINEST | Denotes extremely detailed tracing information which can be used for debugging. | From f6b046f0197d71ff3ac1189a3ba6110e54e480c1 Mon Sep 17 00:00:00 2001 From: ArooshLele Date: Mon, 2 Mar 2026 19:40:01 +0530 Subject: [PATCH 13/15] Update primary-loggers.md Signed-off-by: ArooshLele --- .../app-framework/primary-loggers.md | 62 ++++++++++--------- 1 file changed, 34 insertions(+), 28 deletions(-) diff --git a/versioned_docs/version-v2.18.x/troubleshoot/app-framework/primary-loggers.md b/versioned_docs/version-v2.18.x/troubleshoot/app-framework/primary-loggers.md index 3156293a22..0a80e1b214 100644 --- a/versioned_docs/version-v2.18.x/troubleshoot/app-framework/primary-loggers.md +++ b/versioned_docs/version-v2.18.x/troubleshoot/app-framework/primary-loggers.md @@ -1,42 +1,48 @@ # Primary loggers -This is a list of primary loggers (and descriptions of each) that you can enable and increase verbosity on within the logging framework. See [enabling tracing](./appfw-tracing.md) for more info. +This is a list of primary loggers and their descriptions. You can enable the loggers and increase the logging verbosity within the logging framework. For more information, see [Enabling tracing](./appfw-tracing.md). ## Loggers for app-server component The log prefix for the Zowe Application Server is `_zsf`, which is used by the server framework. (Applications and plug-ins that are attached to the server do not use the `_zsf` prefix.) The following are the logger names that you can specify: -* **_zsf.bootstrap**: Logging that pertains to the startup of the server. -* **_zsf.auth**: Logging for network calls that must be checked for authentication and authorization purposes. -* **_zsf.static**: Logging of the serving of static files (such as images) from an application's /web folder. -* **_zsf.child**: Logging of child processes, if any. -* **_zsf.utils**: Logging for miscellaneous utilities that the server relies upon. -* **_zsf.proxy**: Logging for proxies that are set up in the server. -* **_zsf.install**: Logging for the installation of plug-ins. -* **_zsf.apiml**: Logging for communication with the api mediation layer. -* **_zsf.routing**: Logging for dispatching network requests to plug-in dataservices. -* **_zsf.network**: Logging for the HTTPS server status (connection, ports, IP, and so on). +Logger name | Description +---|--- +**_zsf.bootstrap** | Logging that pertains to the startup of the server. +**_zsf.auth** | Logging for network calls that must be checked for authentication and authorization purposes. +**_zsf.static** | Logging of the serving of static files (such as images) from an application's folder or a web folder. +**_zsf.child** | Logging of child processes, if any. +**_zsf.utils** | Logging for miscellaneous utilities that the server relies upon. +**_zsf.proxy** | Logging for proxies that are set up in the server. +**_zsf.install** | Logging for the installation of plug-ins. +**_zsf.apiml** | Logging for the communication with the API Mediation Layer. +**_zsf.routing** | Logging for dispatching network requests to plug-in dataservices. +**_zsf.network** | Logging for the HTTPS server status (connection, ports, IP, etc). ## Loggers for zss component The log prefix for ZSS is `_zss`. The following are the logger names that you can specify: -* **_zss.traceLevel**: Controls general server logging verbosity. -* **_zss.fileTrace**: Logs file serving behavior (if file serving is enabled). -* **_zss.socketTrace**: Logs general TCP Socket behavior. -* **_zss.httpParseTrace**: Logs parsing of HTTP messages. -* **_zss.httpDispatchTrace**: Logs dispatching of HTTP messages to dataservices. -* **_zss.httpHeadersTrace**: Logs parsing and setting of HTTP headers. -* **_zss.httpSocketTrace**: Logs TCP socket behavior for HTTP. -* **_zss.httpCloseConversationTrace**: Logs HTTP behavior for when an HTTP conversation ends. -* **_zss.httpAuthTrace**: Logs behavior for session security. -* **_zss.jwtTrace**: Logs the JSON Web Tokens. +Logger name | Description +---|--- +**_zss.traceLevel** | Controls the logging verbosity of the server. +**_zss.fileTrace** | Logs the behavior of file serving (if file serving is enabled). +**_zss.socketTrace** | Logs the behavior of a general TCP Socket. +**_zss.httpParseTrace** | Logs the parsing of HTTP messages. +**_zss.httpDispatchTrace** | Logs the dispatching of HTTP messages to dataservices. +**_zss.httpHeadersTrace** | Logs the parsing and setting up of HTTP headers. +**_zss.httpSocketTrace** | Logs the behavior of a TCP socket for HTTP. +**_zss.httpCloseConversationTrace** | Logs the behavior of HTTP when an HTTP conversation ends. +**_zss.httpAuthTrace** | Logs the behavior of the security of a session. +**_zss.jwtTrace** | Logs the JSON Web Tokens. + ## Log levels Most loggers have levels ranging from 0 to 5 where 0 is the least verbose and 5 is the most verbose. - -* 0: SEVERE -* 1: WARNING -* 2 (Default): INFO -* 3: FINE -* 4: FINER -* 5: FINEST +| Verbosity | Log type | Log information | +|---|---|---| +| 0 ( least verbose ) | SEVERE | Denotes critical errors, application failure. | +| 1 | WARNING | Denotes potential issues that need attention soon. | +| 2 (Default) | INFO | Denotes general operational updates, normal functioning. | +| 3 | FINE | Denotes detailed tracing information. | +| 4 | FINER | Denotes more detailed tracing information. | +| 5 ( most verbose ) | FINEST | Denotes extremely detailed tracing information which can be used for debugging. | From 57dadb36a6587270ce320b6c063259ae689c8ee0 Mon Sep 17 00:00:00 2001 From: ArooshLele Date: Thu, 12 Mar 2026 14:08:23 +0530 Subject: [PATCH 14/15] Update primary-loggers.md Signed-off-by: ArooshLele --- docs/troubleshoot/app-framework/primary-loggers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/troubleshoot/app-framework/primary-loggers.md b/docs/troubleshoot/app-framework/primary-loggers.md index 5d2e674d23..bfb0bed786 100644 --- a/docs/troubleshoot/app-framework/primary-loggers.md +++ b/docs/troubleshoot/app-framework/primary-loggers.md @@ -39,10 +39,10 @@ Logger name | Description Most loggers have levels ranging from 0 to 5, where 0 is the least verbose and 5 is the most verbose. | Verbosity | Log type | Log information | |---|---|---| -| 0 ( least verbose ) | SEVERE | Denotes critical errors, application failure. | +| 0 (least verbose) | SEVERE | Denotes critical errors, application failure. | | 1 | WARNING | Denotes potential issues that need attention soon. | | 2 (Default) | INFO | Denotes general operational updates, normal functioning. | | 3 | FINE | Denotes detailed tracing information. | | 4 | FINER | Denotes more detailed tracing information. | -| 5 ( most verbose ) | FINEST | Denotes extremely detailed tracing information which can be used for debugging. | +| 5 (most verbose) | FINEST | Denotes extremely detailed tracing information which can be used for debugging. | From 1769c9e33e9b9caa19ee98c93a6bf65d2429af99 Mon Sep 17 00:00:00 2001 From: ArooshLele Date: Thu, 12 Mar 2026 14:09:02 +0530 Subject: [PATCH 15/15] Update primary-loggers.md Signed-off-by: ArooshLele --- .../troubleshoot/app-framework/primary-loggers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/versioned_docs/version-v2.18.x/troubleshoot/app-framework/primary-loggers.md b/versioned_docs/version-v2.18.x/troubleshoot/app-framework/primary-loggers.md index 0a80e1b214..0f16657276 100644 --- a/versioned_docs/version-v2.18.x/troubleshoot/app-framework/primary-loggers.md +++ b/versioned_docs/version-v2.18.x/troubleshoot/app-framework/primary-loggers.md @@ -39,10 +39,10 @@ Logger name | Description Most loggers have levels ranging from 0 to 5 where 0 is the least verbose and 5 is the most verbose. | Verbosity | Log type | Log information | |---|---|---| -| 0 ( least verbose ) | SEVERE | Denotes critical errors, application failure. | +| 0 (least verbose) | SEVERE | Denotes critical errors, application failure. | | 1 | WARNING | Denotes potential issues that need attention soon. | | 2 (Default) | INFO | Denotes general operational updates, normal functioning. | | 3 | FINE | Denotes detailed tracing information. | | 4 | FINER | Denotes more detailed tracing information. | -| 5 ( most verbose ) | FINEST | Denotes extremely detailed tracing information which can be used for debugging. | +| 5 (most verbose) | FINEST | Denotes extremely detailed tracing information which can be used for debugging. |