Skip to Main Content
IBM Sustainability Software - Ideas Portal


This portal is to open public enhancement requests against the products and services belonging to IBM Sustainability Software. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).


Shape the future of IBM!

We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:

Search existing ideas

Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,

Post your ideas
  1. Post an idea.

  2. Get feedback from the IBM team and other customers to refine your idea.

  3. Follow the idea through the IBM Ideas process.


Specific links you will want to bookmark for future use

Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.

IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.

ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.

Status Planned for future release
Created by Guest
Created on Oct 20, 2021

autoscript performance enhancement: provide method to check current logging level

The service object now sports log_debug() and log_info() methods. Maximo autoscripters are thankful for the option to choose the level we log messages at. The next step is to allow us to optimize performance by allowing us to choose when we try to log messages.


If we call service.log_debug("some context {}".format(mbo.getString("SOMEATTR"))), then the string formatting work will be done and the resulting string will be sent to log_debug(). There is currently no way to easily and accurately confirm that the string sent to log_debug() will, in fact, make it into the logs. The log_debug() call may just discard that string we went to the trouble of assembling.


Please provide an easy and accurate way to avoid the performance hit of doing string work if the resulting string is just going to be discarded by the log_debug() or log_info() call.


IBM is obviously free to design a solution as they please. However, I offer the following suggestions.

  1. Enhance the service object / ScriptService class to have a getLogger() method. The method would take no arguments and return the MXLogger where service.log_debug() messages would go. This would allow developers full, direct access to the script's logger without having to guess / assume it is "maximo.script.SCRIPTNAME". Developers can then then call that logger's isDebugEnabled(), or etc, as needed. This seems to me to be the least effort for IBM and also the biggest win for developers.

  2. Enhance the service object / ScriptService class to have log_debugEnabled() and etc methods. Then developers can call make calls to log_debug() and etc conditional to whether that level is enabled.

Idea priority High
Needed By Yesterday (Let's go already!)