-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create status commandlet #758
Labels
enhancement
New feature or request
logging
settings
ide-settings repo and replated processes and features
Milestone
Comments
hohwille
added
logging
settings
ide-settings repo and replated processes and features
labels
Nov 13, 2024
leonrohne27
added a commit
to leonrohne27/IDEasy
that referenced
this issue
Nov 15, 2024
Added a status commandlet that lets the user check his ide status
leonrohne27
added a commit
to leonrohne27/IDEasy
that referenced
this issue
Nov 15, 2024
leonrohne27
added a commit
to leonrohne27/IDEasy
that referenced
this issue
Nov 15, 2024
leonrohne27
added a commit
to leonrohne27/IDEasy
that referenced
this issue
Nov 15, 2024
leonrohne27
added a commit
to leonrohne27/IDEasy
that referenced
this issue
Nov 15, 2024
leonrohne27
added a commit
to leonrohne27/IDEasy
that referenced
this issue
Nov 15, 2024
leonrohne27
added a commit
to leonrohne27/IDEasy
that referenced
this issue
Nov 18, 2024
leonrohne27
added a commit
to leonrohne27/IDEasy
that referenced
this issue
Nov 18, 2024
added missing Javadoc to StatusCommandlet and updated help output
hohwille
pushed a commit
that referenced
this issue
Nov 26, 2024
hohwille
added a commit
to hohwille/IDEasy
that referenced
this issue
Nov 28, 2024
hohwille
added a commit
to hohwille/IDEasy
that referenced
this issue
Nov 28, 2024
hohwille
added a commit
to hohwille/IDEasy
that referenced
this issue
Nov 28, 2024
hohwille
added a commit
that referenced
this issue
Nov 29, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
enhancement
New feature or request
logging
settings
ide-settings repo and replated processes and features
As a IDEasy user, I want to have a simple command so that I can quickly see outstanding notifications and warnings.
Currently we log such notifications and warnings on the fly while processing arbitrary commandlets.
However, there are also some commandlets that are considered to produce "processable output" that need to suppress such output.
Question: What commandelt should the end-user invoke in order to see if there are updates to
settings
or there are warnings for his configuration?Answer: There is currently no clean answer this this question. You may call
ide help
and get the output on top of the help but need to scroll up in order to find it. You may callide -v
oride
oride get-version java
and notice that all of these have processable output and suppress the information. You might get the output if you add--debug
option but then you also get lots of debug output. So you might callide install java
or something but just to get such information you do not want to invoke something like an installation.So in other words:
StatusCommandlet
that can be called viaide status
to get only such status information without applying any changes.ide
should invokeideasy status
if we are inside an IDEasy project.StatusCommandlet
it will print me all warnings about mysettings
(e.g. duplicated or legacy variables) as well as potential information about updates tosettings
I should apply withide update
.The text was updated successfully, but these errors were encountered: