Update logger config and create a session usermapping
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
cami 2021-07-24 01:14:25 +02:00
parent d220f86cb8
commit c52308e623

View file

@ -32,11 +32,8 @@ export default function Study() {
useEffect(() => {
_logger.current = new Logger({
//inputs: ["cursor", "wheel", "keyboard", "touch"],
inputs: ["keyboard"],
// apiUrl: "https://behavior.marcocamenzind.ch",
apiUrl: "http://localhost:5000",
logToConsole: true,
inputs: ["keyboard", "wheel", "cursor", "custom"],
apiUrl: "https://behavior.marcocamenzind.ch",
});
_logger.current.init();
authFetch("/api/username", {
@ -112,6 +109,12 @@ export default function Study() {
receiveRandomPassword();
setState(STATES.NORMAL);
handleLoggerOn();
// map username and session with the logs
_logger.current.logCustomEvent(
{
name: serverUsername,
},
);
};
const resetInputValues = () => {