Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <github@jus.li>2017-07-06 10:54:21 +0300
committerJulius Härtl <jus@bitgrid.net>2017-07-10 14:22:59 +0300
commite624c0c3bc4ef574ccabd7881b7524af8df8e2eb (patch)
tree85ffbacf11607523d1af7ab9245c3d8b5f8225fd
parenta7cf3216f24ee40f82d0175f022b49b65e513e8a (diff)
Remove log message on cron run
Signed-off-by: Julius Härtl <jus@bitgrid.net>
-rw-r--r--lib/Service/CronService.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Service/CronService.php b/lib/Service/CronService.php
index ca114166..dba14371 100644
--- a/lib/Service/CronService.php
+++ b/lib/Service/CronService.php
@@ -48,7 +48,6 @@ class CronService {
public function expireCredentials() {
- $this->logger->info('Passman cron test', array('app' => 'passman'));
$expired_credentials = $this->credentialService->getExpiredCredentials($this->utils->getTime());
foreach($expired_credentials as $credential){
$link = ''; // @TODO create direct link to credential
@@ -68,4 +67,4 @@ class CronService {
}
}
}
-} \ No newline at end of file
+}