diff options
author | Samuel Mendoza-Jonas <sam@mendozajonas.com> | 2016-12-14 14:52:11 +1100 |
---|---|---|
committer | Samuel Mendoza-Jonas <sam@mendozajonas.com> | 2016-12-20 16:40:22 +1100 |
commit | f901ce58f58ad4f7d769140fe98426e5ac9f7759 (patch) | |
tree | e79e20f232935d0f245aa0493259977e5059dde9 | |
parent | 75c97cfd449b2bac8e61af1017a83bdf43f5e8fe (diff) | |
download | petitboot-f901ce58f58ad4f7d769140fe98426e5ac9f7759.zip petitboot-f901ce58f58ad4f7d769140fe98426e5ac9f7759.tar.gz |
ui/ncurses: Don't announce pb-discover connection
The "Connected to pb-discover!" message is more useful for development
than actual use; for users the more important messages are related to
device and configuration parsing. Drop the message to slightly reduce
the level of noise on start up.
Signed-off-by: Samuel Mendoza-Jonas <sam@mendozajonas.com>
-rw-r--r-- | ui/ncurses/nc-cui.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ui/ncurses/nc-cui.c b/ui/ncurses/nc-cui.c index b4f74a7..fbc02b9 100644 --- a/ui/ncurses/nc-cui.c +++ b/ui/ncurses/nc-cui.c @@ -1007,8 +1007,7 @@ static int cui_server_wait(void *arg) nc_scr_status_printf(cui->current, "Info: Waiting for device discovery"); } else { - nc_scr_status_printf(cui->current, - "Info: Connected to pb-discover!"); + nc_scr_status_free(cui->current); talloc_steal(cui, cui->client); if (cui->has_input) { |