Skip to main content
Participant
January 12, 2015
Question

Error Logging Tools

  • January 12, 2015
  • 2 replies
  • 442 views

I've been tasked with finding out how other companies implement error logging.  I'm not interested so much in how to use Coldfusion to log errors, I'm more interested in whether folks are using third party error logging tools.

What tools does your company use to manage application wide error logging?

Thanks in Advance

    This topic has been closed for replies.

    2 replies

    BKBK
    Community Expert
    Community Expert
    January 22, 2015

    I do find ColdFusion's own logging apparatus, including custom logging using, for example, <cflog>, sufficient for ColdFusion's needs. My bet is that the majority of ColdFusion Developers do as well.

    Participant
    January 22, 2015

    thanks for your opinion ... 

    Legend
    January 12, 2015

    We use log4j which is incorporated within CF. Don't using CFLog as it is nothing more than a very limited shell on top of log4j. Research log4j and go through the documentation as it is very full featured. Hope this helps.

    Participant
    January 12, 2015

    That's an Apache project right?  We don't run Apache.  I'm guessing I would have to configure Apache to enable this app to function?

    Carl Von Stetten
    Legend
    January 12, 2015

    Mike-

    Don't confuse Apache Software Foundation (ASF) (the organization) with Apache HTTP Server (the web server, a specific product of the ASF).  ASF has more than 150 top-level projects,including Apache HTTP Server, Apache Tomcat, Apache Lucene, Apache SOLR, and Apache log4j.  They are completely separate and standalone products.

    The problem is most people refer to Apache HTTP Server as just "Apache" (although 95% of the time people will know what you mean by the context).

    -Carl V.