You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a developer creates a new step named «step-name» this will immediately trigger the following log output on loglevel STEP:
Start: «step-name»
The developer can now end the step explicitly with a custom success message but if he just invokes step.success() then a default success message is logged on loglevel STEP.
This is currently just:
«step-name»
Depending on what the developer has chosen as step name this can be rather confusing.
Instead we should get something like this:
Successfully ended step '«step-name»'.
The text was updated successfully, but these errors were encountered:
Example log before change when running ide update:
Start: Install or update software
Start: Install eclipse
Version 2024-09 of tool eclipse is already installed
Install eclipse
Start: Install intellij
Version 2023.3.7 of tool intellij is already installed
Install intellij
Start: Install gradle
Version 8.10.2 of tool gradle is already installed
Install gradle
Start: Install jmc
Version 9.0.0 of tool jmc is already installed
Install jmc
Start: Install npm
Version 10.8.3 of tool npm is already installed
Install npm
Start: Install tomcat
Necessary version of the dependency java is already installed in repository
Version 10.1.30 of tool tomcat is already installed
Install tomcat
Start: Install aws
Trying to download aws-2.17.57-windows-x64.msi from https://awscli.amazonaws.com/AWSCLIV2-2.17.57.msi
Downloading 100% [===============================================] 39/39MiB (0:00:12 / 0:00:00) 3.3MiB/s
Checksum 558afec17ffc15cc2572912b927de4e5420e546d44fbc5f97deb58fd7a711836 is correct.
Successfully installed aws in version 2.17.57 replacing previous version 2.17.56
Start: Install java
Version 21.0.4_7 of tool java is already installed
Install java
Start: Install node
Version v18.20.4 of tool node is already installed
Install node
Start: Install mvn
Version 3.9.9 of tool mvn is already installed
Install mvn
Install or update software
It is not very obvious for the user that Install java means that java is successfully installed.
When a developer creates a new step named
«step-name»
this will immediately trigger the following log output on loglevelSTEP
:The developer can now end the step explicitly with a custom success message but if he just invokes
step.success()
then a default success message is logged on loglevelSTEP
.This is currently just:
Depending on what the developer has chosen as step name this can be rather confusing.
Instead we should get something like this:
The text was updated successfully, but these errors were encountered: