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