Changeset 1865

Show
Ignore:
Timestamp:
08/10/2007 23:24:43 (3 years ago)
Author:
chris
Message:

Log the name of missing configuration keys before throwing exception.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • box/trunk/lib/common/Configuration.cpp

    r1776 r1865  
    320320        if(i == mKeys.end()) 
    321321        { 
     322                BOX_ERROR("Missing configuration key: " << pKeyName); 
    322323                THROW_EXCEPTION(CommonException, ConfigNoKey) 
    323324        }