So, instead of:
Debug.logInfo("I got a " + inputValue + ", returning " + result, module); do this: Debug.logInfo("I got a %s, returning %s", module, inputValue, result);I think the latter is much easier to deal with, and makes it easier to translate, if needed.