| 32 | } |
| 33 | |
| 34 | void SceneSwitcherEntry::logMatchScene() |
| 35 | { |
| 36 | std::string sceneName = previous_scene_name; |
| 37 | if (!usePreviousScene) { |
| 38 | sceneName = GetWeakSourceName(scene); |
| 39 | } |
| 40 | blog(LOG_INFO, "match for '%s' - switch to scene '%s'", getType(), |
| 41 | sceneName.c_str()); |
| 42 | } |
| 43 | |
| 44 | void SceneSwitcherEntry::logMatchSceneGroup() |
| 45 | { |
nothing calls this directly
no test coverage detected