Summary: If your stonehearth log_level in user_settings.json is set to at least 5, you’ll get a Lua error when a hearthling dies, due to an incorrectly configured string in a log:info(...) call.
Steps to reproduce:
- Set your
stonehearthlog_levelinuser_settings.jsonto at least 5 - Kill a hearthling
- Experience Lua error
Notes: It’s stonehearth/services/server/town/town.lua line 409:
Current: self._log:info('removing %d from task group "%s"', entity, task_group_uri)
Should be: self._log:info('removing %s from task group "%s"', entity, task_group_uri)
Not a critical thing, just annoying for modders trying to debug their own stuff and trying to track down why this error is happening. 
