aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Log/Systemdlog.php
Commit message (Collapse)AuthorAgeFilesLines
* Update license headers for 19Christoph Wurst2020-04-291-0/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Format control structures, classes, methods and functionChristoph Wurst2020-04-101-2/+1
| | | | | | | | | | | | | | | To continue this formatting madness, here's a tiny patch that adds unified formatting for control structures like if and loops as well as classes, their methods and anonymous functions. This basically forces the constructs to start on the same line. This is not exactly what PSR2 wants, but I think we can have a few exceptions with "our" style. The starting of braces on the same line is pracrically standard for our code. This also removes and empty lines from method/function bodies at the beginning and end. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Remove unused importsChristoph Wurst2020-03-251-1/+0
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Update license headersChristoph Wurst2019-12-051-6/+9
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Some php-cs fixesRoeland Jago Douma2019-11-221-1/+1
| | | | | | | | | | | * Order the imports * No leading slash on imports * Empty line before namespace * One line per import * Empty after imports * Emmpty line at bottom of file Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Move log detail aggregation to separate class and reuse it in syslog/systemd ↵Julius Härtl2019-07-171-4/+6
| | | | | | logger Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Revert "Fix undeclared method warning in phan"Morris Jobke2018-07-031-1/+0
| | | | | | This reverts commit f3093b24016f42843d92a1a59cf955692bac57d1. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Fix undeclared method warning in phanMorris Jobke2018-07-021-0/+1
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Added Systemd.log documentation to config.sample.phpJohannes Ernst2018-06-291-3/+13
| | | | | | | | Changed name of default system (not systemd) logger from ownCloud to Nextcloud, to be consistent Fixed license per https://github.com/nextcloud/server/pull/9760#discussion_r195026784 Pulled upstream updates Signed-off-by: Johannes Ernst <jernst@indiecomputing.com>
* Added a logger for systemd/journaldJohannes Ernst2018-06-291-0/+68
Added a unit test Signed-off-by: Johannes Ernst <jernst@indiecomputing.com>