Ignore:
Timestamp:
Jan 12, 2012, 5:37:11 PM (12 years ago)
Author:
Jessica B. Hamrick <jhamrick@…>
Branches:
no-cups
Children:
d17381b, c500bc2, 8d89b3d
Parents:
d994f15
git-author:
Jessica B. Hamrick <jhamrick@…> (01/12/12 17:37:11)
git-committer:
Jessica B. Hamrick <jhamrick@…> (01/12/12 17:37:11)
Message:

Add logging configuration option

File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/lib/gutenbach/server/player.py

    rc94fa32 ra9eb577e  
    6767            self._done = False
    6868
    69         command = "/usr/bin/mplayer -really-quiet -slave".split()+[self.fh.name]
    70         logger.info("Running %r", command)
     69        command = ["mplayer", "-really-quiet", "-slave", self.fh.name]
     70        logger.info("running '%s'", " ".join(command))
    7171
    7272        if self._dryrun:
     
    7979
    8080        else:
    81             # open mplayer
    82 
    8381            with self.lock:
    8482                self.player = subprocess.Popen(
Note: See TracChangeset for help on using the changeset viewer.