Skip to content

Instantly share code, notes, and snippets.

@chris-garrett
Created August 26, 2014 18:11
Show Gist options
  • Save chris-garrett/8637c2216f7d62d327bb to your computer and use it in GitHub Desktop.
Save chris-garrett/8637c2216f7d62d327bb to your computer and use it in GitHub Desktop.
Dumping startup parameters
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