HMS

Home Media Server for Roku Players
git clone https://www.brianlane.com/git/HMS
Log | Files | Refs | README | LICENSE

commit ec5e22a9fceb5ff84d8cf070c693d657b14603a7
parent c76dc68153d0c409808171fbcb9dd41caf64f13d
Author: Brian C. Lane <bcl@brianlane.com>
Date:   Mon, 14 Nov 2011 20:55:57 -0800

Change some debugging strings

Diffstat:
MHMS/source/appMain.brs | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/HMS/source/appMain.brs b/HMS/source/appMain.brs @@ -28,9 +28,9 @@ Sub Main() done = false while not done - print path + print "path: ";path pathString = joinString(path, "/", true, true) - print pathString + print "pathString: ";pathString ret = displayDirectory( "http://"+RegRead("ServerURL")+pathString ) print "main: ";ret print "depth:";path.Count() @@ -39,6 +39,7 @@ Sub Main() else if ret = invalid then path.Pop() else + print "Adding to path: ";ret path.Push(ret) end if end while