Upgraded from 13.x to 14.0.3 and error log is filling up

Hello,

I’ve updated from Nextcloud 13 to 14.0.3 and noticed nextcloud has started to fill my apache error log with the following lines:

[Thu Oct 25 21:09:50.545099 2018] [rewrite:trace3] [pid 27949] mod_rewrite.c(476): [client 192.168.0.1:35280] 192.168.0.1 - - [<my_domain>/sid#7f860f6587d0][rid#7f860f59f0a0/initial] [perdir /opt/nextcloud/] add path info postfix: /opt/nextcloud/remote.php -> /opt/nextcloud/remote.php/dav/files/zac/
[Thu Oct 25 21:09:50.545159 2018] [rewrite:trace3] [pid 27949] mod_rewrite.c(476): [client 192.168.0.1:35280] 192.168.0.1 - - [<my_domain>/sid#7f860f6587d0][rid#7f860f59f0a0/initial] [perdir /opt/nextcloud/] strip per-dir prefix: /opt/nextcloud/remote.php/dav/files/zac/ -> remote.php/dav/files/zac/
[Thu Oct 25 21:09:50.545175 2018] [rewrite:trace3] [pid 27949] mod_rewrite.c(476): [client 192.168.0.1:35280] 192.168.0.1 - - [<my_domain>/sid#7f860f6587d0][rid#7f860f59f0a0/initial] [perdir /opt/nextcloud/] applying pattern '^$' to uri 'remote.php/dav/files/zac/'
[Thu Oct 25 21:09:50.545191 2018] [rewrite:trace3] [pid 27949] mod_rewrite.c(476): [client 192.168.0.1:35280] 192.168.0.1 - - [<my_domain>/sid#7f860f6587d0][rid#7f860f59f0a0/initial] [perdir /opt/nextcloud/] add path info postfix: /opt/nextcloud/remote.php -> /opt/nextcloud/remote.php/dav/files/zac/
[Thu Oct 25 21:09:50.545205 2018] [rewrite:trace3] [pid 27949] mod_rewrite.c(476): [client 192.168.0.1:35280] 192.168.0.1 - - [<my_domain>/sid#7f860f6587d0][rid#7f860f59f0a0/initial] [perdir /opt/nextcloud/] strip per-dir prefix: /opt/nextcloud/remote.php/dav/files/zac/ -> remote.php/dav/files/zac/
[Thu Oct 25 21:09:50.545219 2018] [rewrite:trace3] [pid 27949] mod_rewrite.c(476): [client 192.168.0.1:35280] 192.168.0.1 - - [<my_domain>/sid#7f860f6587d0][rid#7f860f59f0a0/initial] [perdir /opt/nextcloud/] applying pattern '.*' to uri 'remote.php/dav/files/zac/'
[Thu Oct 25 21:09:50.545252 2018] [rewrite:trace5] [pid 27949] mod_rewrite.c(476): [client 192.168.0.1:35280] 192.168.0.1 - - [<my_domain>/sid#7f860f6587d0]
[Thu Oct 25 21:09:50.545268 2018] [rewrite:trace3] [pid 27949] mod_rewrite.c(476): [client 192.168.0.1:35280] 192.168.0.1 - - [<my_domain>/sid#7f860f6587d0][rid#7f860f59f0a0/initial] [perdir /opt/nextcloud/] add path info postfix: /opt/nextcloud/remote.php -> /opt/nextcloud/remote.php/dav/files/zac/

It looks like a apache rewrite rule config issue, but I’m not 100% sure. Any one recognize this, anything else that might be causing it?

The app itself is running fine. I can log in and change settings, sync files, etc.

Well, I finally answered my own question. The log level for mod rewrite on trace3 (per the log lines) so I just needed to bump it up to error and the log noise went away. In my apache.cont I found the line:

LogLevel warn rewrite:trace3

and bumped it to
LogLevel warn rewrite:error

Now the ‘error’ log is noise free.