From 0d35b99a30ef05ecba2a65753f198db0da57cc0d Mon Sep 17 00:00:00 2001 From: ka2er Date: Thu, 18 Oct 2012 16:51:40 +0300 Subject: [PATCH] replace print cmd with a logger.debug --- headphones/music_encoder.py | 1 + 1 file changed, 1 insertion(+) diff --git a/headphones/music_encoder.py b/headphones/music_encoder.py index 63e44927..04dec8f5 100644 --- a/headphones/music_encoder.py +++ b/headphones/music_encoder.py @@ -136,6 +136,7 @@ def command(encoder,musicSource,musicDest,albumPath): cmd=cmd+' '+ headphones.ADVANCEDENCODER cmd=cmd+ ' "' + musicDest + '"' + logger.debug(cmd) try: return_code = call(cmd, shell=True)