org.jitsi.utils.logging.Logger Java Examples
The following examples show how to use
org.jitsi.utils.logging.Logger.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ChatRoomRoleAndPresence.java From jicofo with Apache License 2.0 | 5 votes |
public ChatRoomRoleAndPresence(JitsiMeetConferenceImpl conference, ChatRoom chatRoom) { this.conference = Objects.requireNonNull(conference, "conference"); this.chatRoom = Objects.requireNonNull(chatRoom, "chatRoom"); this.logger = Logger.getLogger(classLogger, conference.getLogger()); }
Example #2
Source File: JitsiMeetConferenceImpl.java From jicofo with Apache License 2.0 | 4 votes |
/** * Returns the <tt>Logger</tt> used by this instance. */ public Logger getLogger() { return logger; }