From 1725e903084ad093f31cc2260862568668e14813 Mon Sep 17 00:00:00 2001 From: Ian Barwick Date: Fri, 13 Nov 2015 20:27:51 +0900 Subject: [PATCH] Change directory warning to a hint --- check_dir.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/check_dir.c b/check_dir.c index 6289079b..adf446b5 100644 --- a/check_dir.c +++ b/check_dir.c @@ -320,10 +320,10 @@ _create_pg_dir(char *dir, bool force, bool for_witness) } else if (pg_dir && !force) { - log_warning(_("\nThis looks like a PostgreSQL directory.\n" - "If you are sure you want to clone here, " - "please check there is no PostgreSQL server " - "running and use the --force option\n")); + log_hint(_("This looks like a PostgreSQL directory.\n" + "If you are sure you want to clone here, " + "please check there is no PostgreSQL server " + "running and use the -F/--force option\n")); return false; }