| 42 | } |
| 43 | |
| 44 | void SceneSwitcherEntry::logMatchSceneGroup() |
| 45 | { |
| 46 | if (group->scenes.empty()) { |
| 47 | blog(LOG_INFO, |
| 48 | "match for '%s' - but no scenes specified in '%s'", |
| 49 | getType(), group->name.c_str()); |
| 50 | return; |
| 51 | } |
| 52 | |
| 53 | std::string sceneName = GetWeakSourceName(group->getCurrentScene()); |
| 54 | |
| 55 | blog(LOG_INFO, "match for '%s' - switch to scene '%s' using '%s'", |
| 56 | getType(), sceneName.c_str(), group->name.c_str()); |
| 57 | } |
| 58 | |
| 59 | void SceneSwitcherEntry::logMatch() |
| 60 | { |
nothing calls this directly
no test coverage detected