Are you "logs" going to be saved in their own table?
If so you can simply run an append query when they log in;
Currentdb.execute "INSERT INTO tbl_Logs ([UserNam], [Date/Time], [Action]) SELECT 'UsersName' As Expr1, Now() As Expr2, 'Action They Performed' As Expr3", dbFailOnError
This is...