mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
32 lines
1.3 KiB
TypeScript
32 lines
1.3 KiB
TypeScript
import { getLogger } from 'log4js'
|
|
import { LOG4JS_BASE_CATEGORY_NAME } from '../config/const'
|
|
import { AbstractLoggingView } from './AbstractLogging.view'
|
|
import { CommunityLoggingView } from './CommunityLogging.view'
|
|
import { ContributionLoggingView } from './ContributionLogging.view'
|
|
import { ContributionMessageLoggingView } from './ContributionMessageLogging.view'
|
|
import { DltTransactionLoggingView } from './DltTransactionLogging.view'
|
|
import { FederatedCommunityLoggingView } from './FederatedCommunityLogging.view'
|
|
import { PendingTransactionLoggingView } from './PendingTransactionLogging.view'
|
|
import { TransactionLoggingView } from './TransactionLogging.view'
|
|
import { UserContactLoggingView } from './UserContactLogging.view'
|
|
import { UserLoggingView } from './UserLogging.view'
|
|
import { UserRoleLoggingView } from './UserRoleLogging.view'
|
|
import { CommunityHandshakeStateLoggingView } from './CommunityHandshakeStateLogging.view'
|
|
|
|
export {
|
|
AbstractLoggingView,
|
|
CommunityLoggingView,
|
|
ContributionLoggingView,
|
|
ContributionMessageLoggingView,
|
|
DltTransactionLoggingView,
|
|
FederatedCommunityLoggingView,
|
|
PendingTransactionLoggingView,
|
|
TransactionLoggingView,
|
|
UserContactLoggingView,
|
|
UserLoggingView,
|
|
UserRoleLoggingView,
|
|
CommunityHandshakeStateLoggingView,
|
|
}
|
|
|
|
export const logger = getLogger(LOG4JS_BASE_CATEGORY_NAME)
|