Changeset 02b7e65024200d565eb767ef394def05a0038ab6
- 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
| r51b0b5e |
r02b7e65 |
|
| 15 | 15 | plugin = GetPlugin(settings.get('type')) |
|---|
| 16 | 16 | if hasattr(plugin,'pre_cache'): |
|---|
| | 17 | print "PreCaching the " + section + " share." |
|---|
| 17 | 18 | pre_cache_filter = getattr(plugin, 'pre_cache') |
|---|
| 18 | 19 | |
|---|
| … | … | |
| 35 | 36 | b.listen() |
|---|
| 36 | 37 | |
|---|
| | 38 | print "pyTivo is ready." |
|---|
| 37 | 39 | try: |
|---|
| 38 | 40 | httpd.serve_forever() |
|---|