Created
August 26, 2014 18:11
-
-
Save chris-garrett/8637c2216f7d62d327bb to your computer and use it in GitHub Desktop.
Dumping startup parameters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Collections::Map<CSI::String, CSI::String> params = m_server->StartupParameters(); | |
Collections::Map<CSI::String, CSI::String>::iterator piter; | |
for (piter = params.begin(); piter != params.end(); piter++) | |
{ | |
logger.Info.Format("{0} : {1}", piter->first, piter->second); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment