当前位置: 首页>>代码示例>>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;未经允许,请勿转载。