Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2605,13 +2605,20 @@ private void printFeatureGenerationHotkeys() {
info(formatAttentionMessage(
"g - toggle the automatic generation of features, type 'g' and press Enter."));
info(formatAttentionMessage(
" A new server configuration file will be generated in the SOURCE configDropins/overrides configuration directory."));
info(formatAttentionMessage("s - generate features to src directory, type 's' and press Enter."));
" A new server configuration file will be generated in the configDropins/overrides configuration directory"));
info(formatAttentionMessage(
" in either the build output directory or in the application source configuration directory."));
info(formatAttentionMessage("s - toggle the generation of features to src configuration directory, type 's' and press Enter."));
if (generateFeatures) {
// If generateFeatures is enabled, then also describe the optimize hotkey
info(formatAttentionMessage("o - optimize the list of generated features, type 'o' and press Enter."));
info(formatAttentionMessage(
" A new server configuration file will be generated in the SOURCE configDropins/overrides configuration directory."));
if (generateToSrc) {
info(formatAttentionMessage(
" A new server configuration file will be generated in the SOURCE configDropins/overrides configuration directory."));
} else {
info(formatAttentionMessage(
" A new server configuration file will be generated in the build output configDropins/overrides configuration directory."));
}
}
}

Expand Down