You can tune the user permissions, however it is not (yet) included in the user interface. You need to update values in the Headwind MDM database.
From the command line, run the following commands (as root):
# su postgres
# psql hmdm
Or find login and password to access the database in the XML configuration (/var/lib/tomcat8/conf/Catalina/localhost/ROOT.xml), and connect to the database by running the command
# psql hmdm -U (username)
In the PostgreSQL shell, find the list of permissions:
# SELECT id, name FROM permissions;
You will see a permission with id=110 and name='plugin_devicelog_access'.
Then look into the list of roles:
# SELECT id, name FROM userroles;
You will see that a user role 'User' has id=3.
Insert the corresponding relation in the table of user role permissions:
# INSERT INTO userrolepermissions(roleId, permissionId) VALUES (3, 110);
Logout from the web panel and re-login. You must see the logs!