mirror of
https://github.com/nextcloud/server.git
synced 2025-05-16 19:25:29 +00:00

This also fixes Typescript issue but requires to slightly adjust the Navigation test as the progress bar is not visible (because it is overlayed by another element). Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
10 lines
281 B
TypeScript
10 lines
281 B
TypeScript
/**
|
|
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
import { getLoggerBuilder } from '@nextcloud/logger'
|
|
|
|
const logger = getLoggerBuilder()
|
|
.setApp('federatedfilesharing')
|
|
.build()
|
|
export default logger
|