No description
  • JavaScript 91.2%
  • PHP 3.2%
  • TypeScript 2.9%
  • Vue 2.6%
Find a file
github-actions[bot] 3f1b63157e
Merge pull request #2113 from nextcloud/automated/noid/master-update-nextcloud-ocp
[master] Update nextcloud/ocp dependency
2026-07-12 06:43:20 +00:00
.github chore: add update-stable-titles workflow 2026-07-11 08:21:59 +02:00
.tx
appinfo fix(psalm): Adjust psalm to 6.16 2026-06-15 11:40:43 +02:00
css fix(deps): Fix npm audit 2026-06-14 04:15:27 +00:00
img
js fix(deps): Fix npm audit 2026-07-05 04:05:38 +00:00
l10n fix(l10n): Update translations from Transifex 2026-07-06 01:31:07 +00:00
lib chore(cs): Apply autofixes 2026-06-15 12:00:58 +02:00
LICENSES chore: update licenses information 2025-11-28 22:21:36 +01:00
screenshots
src fix(App): change mount point 2026-05-12 11:52:38 +02:00
templates
tests fix(phpunit): Update to PHPUnit 12.5 2026-06-15 11:46:42 +02:00
.gitattributes
.gitignore chore: add IDE directories to .gitignore 2026-07-11 08:27:06 +02:00
.l10nignore
.php-cs-fixer.dist.php
AUTHORS.md
codecov.yml
composer.json ci: Update tooling to PHP 8.3 2026-06-15 11:24:59 +02:00
composer.lock chore(dev-deps): Bump nextcloud/ocp package 2026-07-12 05:43:39 +00:00
eslint.config.mjs chore: update eslint config to Vue 3 2025-11-28 22:18:08 +01:00
Makefile
package-lock.json chore(deps-dev): bump @nextcloud/eslint-config from 9.0.0-rc.9 to 9.0.0 2026-07-11 01:02:50 +00:00
package.json chore(deps-dev): bump @nextcloud/eslint-config from 9.0.0-rc.9 to 9.0.0 2026-07-11 01:02:50 +00:00
psalm.xml chore: bump PHP version to 8.3 2026-06-15 10:55:40 +02:00
README.md
REUSE.toml chore: update licenses information 2025-11-28 22:21:36 +01:00
tsconfig.json chore: update tsconfig and mount file to Vue 3 2025-11-28 22:18:08 +01:00
vite.config.ts chore: update tsconfig and mount file to Vue 3 2025-11-28 22:18:08 +01:00

Log Reader

REUSE status

screenshot

Log reader for Nextcloud with clean exception display, infinite scrolling and more.

Install instructions

Installed by default

Log Reader is installed by default in recent versions of Nextcloud so you don't have to do anything else to use the app.

Install the latest stable release manually

  • Download the last pre-build release
  • Extract the tar.gz into the apps folder

Install from source

  • clone the repo in the apps folder
  • Run make in the logreader folder

Developing

For building the app node and npm are required

Building

Building the app can be done using the Makefile

make

Automatic rebuilding during development

During development the webpack dev server can be used to automatically build the code for every change.

Since the compiled source from the webpack dev server need to be injected in the regular Nextcloud sources a proxy setup is needed to combine things.

If your local Nextcloud setup runs at http://localcloud an nginx configuration for the proxy would look like the following:

server {
    listen 81;
    server_name localcloud;

    location /apps/logreader/build/main.js {
        proxy_pass http://localhost:3000/build/main.js;
    }
    location /apps/logreader/build/main.css {
        return 404;
    }
    
    location /build {
        proxy_pass http://localhost:3000;
    }
    location /__webpack_hmr {
        proxy_set_header Host $host;
        proxy_pass http://localhost:3000;
        proxy_set_header Connection '';
        proxy_http_version 1.1;
        chunked_transfer_encoding off;
        proxy_buffering off;
        proxy_cache off;
    }

    location / {
        proxy_set_header Host $host;
        proxy_hide_header Content-Security-Policy;
        proxy_pass http://localcloud/;
    }
}

This will run the proxy at http://localcloud:81/

With the proxy configured you can start the webpack dev server and specify where the Nextcloud proxy is.

PROXY_URL="http://localcloud:81/ make watch