[ Index ]

PHP Cross Reference of moodle-2.8

title

Body

[close]

/lib/alfresco/Service/Logger/ -> LoggerConfig.php (source)

   1  <?php
   2  /*

   3   * Copyright (C) 2005-2010 Alfresco Software Limited.

   4   *

   5   * This file is part of Alfresco

   6   *

   7   * Alfresco is free software: you can redistribute it and/or modify

   8   * it under the terms of the GNU Lesser General Public License as published by

   9   * the Free Software Foundation, either version 3 of the License, or

  10   * (at your option) any later version.

  11   *

  12   * Alfresco is distributed in the hope that it will be useful,

  13   * but WITHOUT ANY WARRANTY; without even the implied warranty of

  14   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the

  15   * GNU Lesser General Public License for more details.

  16   *

  17   * You should have received a copy of the GNU Lesser General Public License

  18   * along with Alfresco. If not, see <http://www.gnu.org/licenses/>.

  19   */
  20   
  21  define("DEBUG", "Debug");
  22  define("WARNING", "Warning");
  23  define("INFO", "Information");
  24  
  25  $debugLevel = array(DEBUG, WARNING, INFO);
  26  $warningLevel = array(WARNING, INFO);
  27  $infoLevel = array(INFO);
  28  $noneLevel = array();
  29  
  30  $defaultLogLevel = $infoLevel;
  31  
  32  $logFile = "c:/work/AlfrescoPHPLog.txt"; 
  33  $componentLogLevels = array(
  34                                  "integration.mediawiki.ExternalStoreAlfresco" => $debugLevel
  35                                 );
  36   
  37   
  38  ?>


Generated: Fri Nov 28 20:29:05 2014 Cross-referenced by PHPXref 0.7.1