Re: CF Log Viewer Question

2009-02-11 Thread Varun Dixit
Thanks Ray. Worked gr8. Use the AdminAPI: cfscript adminObj = createObject(component,cfide.adminapi.administrator); adminObj.login(admin); debugger = createObject(component, cfide.adminapi.debugging); logfolder = debugger.getLogProperty(logdirectory); /cfscript cfoutput#logfolder#/cfoutput

CF Log Viewer Question

2009-02-10 Thread Varun Dixit
I am writing a ColdFusion Log File viewer for a client, and can not figure out how to get the path of the directory where Cold Fusion logs file are stored. I see in CF Admin, Debugging Logging Logging Settings you can specify the where the log files are stored. Is there a variable or a

Re: CF Log Viewer Question

2009-02-10 Thread Raymond Camden
Use the AdminAPI: cfscript adminObj = createObject(component,cfide.adminapi.administrator); adminObj.login(admin); debugger = createObject(component, cfide.adminapi.debugging); logfolder = debugger.getLogProperty(logdirectory); /cfscript cfoutput#logfolder#/cfoutput On Tue, Feb 10, 2009 at