Is there a way through the brasiers like firebug or another browser plugin to do traces or log console from a cfc file.
I’m completely new to CF so sorry if this seems like a stupid question.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is a cftrace tag that will allow you to log output to the console, among other spots in your application and development environment.
Calling this tag will output the relevant content in a few places:
You can also use the tag cflog to write data to one of the standard log files or you may choose to have it write the desired data to a custom log file.
If “customlog” does not exist, CF will create it for you (in the same location noted above).
Hope that helps!
EDIT: I offered this more of an alternative way to using to Firebug … if you want the logs/traces but were not necessarily wed to a browser/plug-in.