23 lines
665 B
JavaScript
23 lines
665 B
JavaScript
// @flow
|
|
import Logger from "../logging/logger";
|
|
import { User } from "../models";
|
|
|
|
export default class CollaborationLogger {
|
|
async onLoadDocument(data: {
|
|
documentName: string,
|
|
context: { user: User },
|
|
}) {
|
|
Logger.info("hocuspocus", `Loaded document "${data.documentName}"`, {
|
|
userId: data.context.user.id,
|
|
});
|
|
}
|
|
|
|
async onConnect(data: { documentName: string, context: { user: User } }) {
|
|
Logger.info("hocuspocus", `New connection to "${data.documentName}"`);
|
|
}
|
|
|
|
async onDisconnect(data: { documentName: string, context: { user: User } }) {
|
|
Logger.info("hocuspocus", `Connection to "${data.documentName}" closed `);
|
|
}
|
|
}
|