mirror of
https://github.com/nextcloud/server.git
synced 2026-03-22 18:33:46 -04:00
10 lines
259 B
TypeScript
10 lines
259 B
TypeScript
/**
|
|
* SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
import { getLoggerBuilder } from '@nextcloud/logger'
|
|
|
|
export default getLoggerBuilder()
|
|
.setApp('files')
|
|
.detectUser()
|
|
.build()
|