diff options
author | Marcus Meissner <marcus@jet.franken.de> | 2014-10-06 07:39:02 +0000 |
---|---|---|
committer | Marcus Meissner <marcus@jet.franken.de> | 2014-10-06 07:39:02 +0000 |
commit | f27bb0ab47f815acee6e8c1491842f4804231141 (patch) | |
tree | b7ee49fc32ab5c180b6724191fac46d8746d3c2f /libgphoto2 | |
parent | b5459e26221a0f6be77a3b9f9b3ee51d40cb3360 (diff) | |
download | libgphoto2-f27bb0ab47f815acee6e8c1491842f4804231141.tar.gz |
quieten the delete message (Do not output progress status)
git-svn-id: https://svn.code.sf.net/p/gphoto/code/trunk/libgphoto2@15201 67ed7778-7388-44ab-90cf-0a291f65f57c
Diffstat (limited to 'libgphoto2')
-rw-r--r-- | libgphoto2/gphoto2-filesys.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libgphoto2/gphoto2-filesys.c b/libgphoto2/gphoto2-filesys.c index be27df44e..c1d65772c 100644 --- a/libgphoto2/gphoto2-filesys.c +++ b/libgphoto2/gphoto2-filesys.c @@ -1128,8 +1128,8 @@ gp_filesystem_delete_file (CameraFilesystem *fs, const char *folder, /* Search the folder and the file */ CR (lookup_folder_file (fs, folder, filename, &f, &file, context)); - gp_context_status (context, _("Deleting '%s' from folder '%s'..."), - filename, folder); + GP_LOG_D ("Deleting '%s' from folder '%s'...", filename, folder); + /* Delete the file */ CR (fs->delete_file_func (fs, folder, filename, fs->data, context)); |