mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 23:21:59 +00:00
Add hilight for usability
This commit is contained in:
parent
a29334de7c
commit
2450b1e7ca
@ -71,6 +71,9 @@ namespace ErrorCodes
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// ANSI escape sequence for intense color in terminal.
|
||||||
|
#define HILITE "\033[1m"
|
||||||
|
#define END_HILITE "\033[0m"
|
||||||
|
|
||||||
using namespace DB;
|
using namespace DB;
|
||||||
namespace po = boost::program_options;
|
namespace po = boost::program_options;
|
||||||
@ -563,12 +566,12 @@ int mainEntryClickHouseInstall(int argc, char ** argv)
|
|||||||
|
|
||||||
if (has_password_for_default_user)
|
if (has_password_for_default_user)
|
||||||
{
|
{
|
||||||
fmt::print("Password for default user is already specified. To remind or reset, see {} and {}.\n",
|
fmt::print(HILITE "Password for default user is already specified. To remind or reset, see {} and {}." END_HILITE,
|
||||||
users_config_file.string(), users_d.string());
|
users_config_file.string(), users_d.string());
|
||||||
}
|
}
|
||||||
else if (!is_interactive)
|
else if (!is_interactive)
|
||||||
{
|
{
|
||||||
fmt::print("Password for default user is empty string. See {} and {} to change it.\n",
|
fmt::print(HILITE "Password for default user is empty string. See {} and {} to change it." END_HILITE,
|
||||||
users_config_file.string(), users_d.string());
|
users_config_file.string(), users_d.string());
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user