get the default path, where config files are located
| 176 | |
| 177 | //get the default path, where config files are located |
| 178 | string PhxBaseConfig::GetDefaultPath() { |
| 179 | if (s_default_path == "") { |
| 180 | s_default_path = PhxBaseConfig::GetBasePath() + "etc/"; |
| 181 | LogWarning("%s get debuf path %s", __func__, s_default_path.c_str()); |
| 182 | } |
| 183 | return s_default_path; |
| 184 | } |
| 185 | |
| 186 | } |
| 187 |
nothing calls this directly
no test coverage detected