當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Kernel::getLogDir方法代碼示例

本文整理匯總了PHP中Symfony\Component\HttpKernel\Kernel::getLogDir方法的典型用法代碼示例。如果您正苦於以下問題:PHP Kernel::getLogDir方法的具體用法?PHP Kernel::getLogDir怎麽用?PHP Kernel::getLogDir使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Symfony\Component\HttpKernel\Kernel的用法示例。


在下文中一共展示了Kernel::getLogDir方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getLogDir

 public function getLogDir()
 {
     if (in_array($this->getEnvironment(), array('dev', 'test'), true)) {
         return sprintf('/tmp/symfony/music/log/%s', $this->environment);
     }
     return parent::getLogDir();
 }
開發者ID:robertdumitrescu,項目名稱:Interview-MusicCoursesApplication,代碼行數:7,代碼來源:AppKernel.php

示例2: getLogDir

 public function getLogDir()
 {
     if (array_key_exists('LOG_DIR', $_ENV)) {
         return $_ENV['LOG_DIR'] . DIRECTORY_SEPARATOR . $this->environment;
     }
     return parent::getLogDir();
 }
開發者ID:sgomez,項目名稱:CraueConfigBundle,代碼行數:7,代碼來源:AppKernel.php

示例3: getLogDir

 public function getLogDir()
 {
     if ($this->gcsBucketName) {
         return sprintf('gs://%s/symfony/log', $this->gcsBucketName);
     }
     return parent::getLogDir();
 }
開發者ID:GoogleCloudPlatform,項目名稱:appengine-symfony-starter-project,代碼行數:7,代碼來源:AppKernel.php

示例4: getLogDir

 public function getLogDir()
 {
     if ($this->getRootDir() === '/vagrant/app' && in_array($this->environment, ['dev', 'test'])) {
         return '/dev/shm/appname/logs';
     }
     return parent::getLogDir();
 }
開發者ID:msvrtan,項目名稱:cqrs1,代碼行數:7,代碼來源:AppKernel.php

示例5: getLogDir

 public function getLogDir()
 {
     if (in_array($this->environment, array('dev', 'test'))) {
         return sys_get_temp_dir() . '/jumph/logs';
     }
     return parent::getLogDir();
 }
開發者ID:fedegiust,項目名稱:Jumph,代碼行數:7,代碼來源:AppKernel.php

示例6: getLogDir

 public function getLogDir()
 {
     if ($this->vagrant) {
         return '/dev/shm/sages/logs/';
     }
     return parent::getLogDir();
 }
開發者ID:Rybbow,項目名稱:symfony-blog,代碼行數:7,代碼來源:AppKernel.php

示例7: getLogDir

 /**
  * {@inheritdoc}
  */
 public function getLogDir()
 {
     if ($this->isVagrantEnvironment()) {
         return '/dev/shm/composer-service/logs';
     }
     return parent::getLogDir();
 }
開發者ID:Omranic,項目名稱:composer-service,代碼行數:10,代碼來源:AppKernel.php

示例8: getLogDir

 /**
  * @see \Symfony\Component\HttpKernel\Kernel::getLogDir()
  */
 public function getLogDir()
 {
     if (in_array($this->environment, ['dev', 'test'])) {
         return '/dev/shm/librarian/logs';
     }
     return parent::getLogDir();
 }
開發者ID:EightArmCode,項目名稱:librarian,代碼行數:10,代碼來源:AppKernel.php

示例9: getLogDir

 public function getLogDir()
 {
     if (in_array($this->environment, array('dev', 'test'))) {
         return '/dev/shm/symfony/logs';
     }
     return parent::getLogDir();
 }
開發者ID:brseixas,項目名稱:Symfony-2-Blog-Tutorial,代碼行數:7,代碼來源:AppKernel.php

示例10: getLogDir

 public function getLogDir()
 {
     if (in_array($this->getEnvironment(), array('dev', 'ci'))) {
         return '/dev/shm/' . $this->getEnvironment() . '/logs/';
     }
     return parent::getLogDir();
 }
開發者ID:veloxy,項目名稱:sourcebox-kunstmaan,代碼行數:7,代碼來源:AppKernel.php

示例11: getLogDir

 public function getLogDir()
 {
     if (in_array($this->environment, ['dev', 'test']) && $this->logDir) {
         return $this->logDir;
     }
     return parent::getLogDir();
 }
開發者ID:psk-pz,項目名稱:Backend,代碼行數:7,代碼來源:AppKernel.php

示例12: getLogDir

 public function getLogDir()
 {
     if (in_array($this->environment, array('dev', 'test'))) {
         return $this->getRootDir() . '/logs';
     }
     return parent::getLogDir();
 }
開發者ID:houximing,項目名稱:sportfun,代碼行數:7,代碼來源:AppKernel.php

示例13: getLogDir

 public function getLogDir()
 {
     if (false !== getEnv('OPENSHIFT_LOG_DIR')) {
         return getEnv('OPENSHIFT_LOG_DIR');
     } else {
         return parent::getLogDir();
     }
 }
開發者ID:ubc,項目名稱:examdb,代碼行數:8,代碼來源:AppKernel.php

示例14: getLogDir

 public function getLogDir()
 {
     if ($this->getEnvironment() == 'prod') {
         if (!is_dir(sys_get_temp_dir() . '/sf2standard/logs')) {
             mkdir(sys_get_temp_dir() . '/sf2standard/logs', 0777, true);
         }
         return sys_get_temp_dir() . '/sf2standard/logs';
     }
     return parent::getLogDir();
 }
開發者ID:nickaggarwal,項目名稱:sample-symfony2,代碼行數:10,代碼來源:AppKernel.php

示例15: getLogDir

 /**
  * Returns path to cache dir.
  *
  * See README on how to override this
  *
  * @return string
  * @throws RuntimeException
  */
 public function getLogDir()
 {
     static $s_dir;
     if ($s_dir) {
         return $s_dir;
     }
     if (self::DEFAULT_LOGS_DIR && (is_dir(self::DEFAULT_LOGS_DIR) || @mkdir(self::DEFAULT_LOGS_DIR, 0777, true)) && is_writeable(self::DEFAULT_LOGS_DIR)) {
         return $s_dir = self::DEFAULT_LOGS_DIR;
     }
     $symfonyDefaultDir = parent::getLogDir();
     if (is_dir($symfonyDefaultDir) && is_writeable($symfonyDefaultDir)) {
         return $s_dir = $symfonyDefaultDir;
     }
     throw new \RuntimeException("Unable to write log file!" . PHP_EOL . "This is because:" . PHP_EOL . (self::DEFAULT_LOGS_DIR ? "* Configured directory '" . self::DEFAULT_LOGS_DIR . "' does not exist, can not be created or is not writable for the current user." : "* No configured directory ('logs_dir' setting in module_janus.php).") . PHP_EOL . "* And default logs dir '{$symfonyDefaultDir}' does not exist or is not writable for the current user.");
 }
開發者ID:baszoetekouw,項目名稱:janus,代碼行數:23,代碼來源:AppKernel.php


注:本文中的Symfony\Component\HttpKernel\Kernel::getLogDir方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。