0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-04-21 16:21:10 +00:00
nextcloud_server/apps/files_trashbin/src/logger.ts
Christopher Ng 943023a3f4 feat(trashbin): Allow emptying trash
Signed-off-by: Christopher Ng <chrng8@gmail.com>
2024-12-12 10:08:38 -08:00

11 lines
276 B
TypeScript

/**
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import { getLoggerBuilder } from '@nextcloud/logger'
export const logger = getLoggerBuilder()
.setApp('files_trashbin')
.detectUser()
.build()