From ce3cab496feec7b015482a4024887b0bc16bc586 Mon Sep 17 00:00:00 2001 From: Christian Garbs Date: Sat, 12 Jan 2008 23:27:56 +0100 Subject: [PATCH] include config location in save message --- videosite.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/videosite.pl b/videosite.pl index c987a26..9c3b313 100644 --- a/videosite.pl +++ b/videosite.pl @@ -103,9 +103,9 @@ sub cmd_save { close(CONF); }; if ($@) { - write_irssi(undef, 'videosite: Could not save config: %s', $@); + write_irssi(undef, 'videosite: Could not save config to %s: %s', ($conffile, $@)); } else { - write_irssi(undef, 'videosite: Saved config'); + write_irssi(undef, 'Videosite configuration saved to %s', $conffile); } } -- 1.8.3.1