Changeset 02b7e65024200d565eb767ef394def05a0038ab6

Show
Ignore:
Timestamp:
02/12/08 11:52:26 (9 months ago)
Author:
KRKeegan <kevin@krkeegan.com>
git-committer:
KRKeegan <kevin@krkeegan.com> 1202838746 -0800
git-parent:

[51b0b5e0861235af31b4eb5f82a1543bc61be6ba]

git-author:
KRKeegan <kevin@krkeegan.com> 1202838746 -0800
Message:

Status messages about precaching status.

Added 2 print lines so that a user can tell when pyTivo is precaching files and when it is ready to serve requests.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • pyTivo.py

    r51b0b5e r02b7e65  
    1515        plugin = GetPlugin(settings.get('type')) 
    1616        if hasattr(plugin,'pre_cache'): 
     17            print "PreCaching the " + section + " share." 
    1718            pre_cache_filter = getattr(plugin, 'pre_cache') 
    1819             
     
    3536    b.listen() 
    3637 
     38print "pyTivo is ready." 
    3739try: 
    3840    httpd.serve_forever()