Skip to content

Commit

Permalink
small update
Browse files Browse the repository at this point in the history
  • Loading branch information
arng40 committed Jun 27, 2024
1 parent b47ffe8 commit c56f007
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 13 deletions.
7 changes: 1 addition & 6 deletions src/coreComponents/dataRepository/Group.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,6 @@ void Group::deregisterWrapper( string const & name )
m_conduitNode.remove( name );
}

void Group::addLogLevelEntry( string_view level, string_view description )
{
m_logLevelsDescriptions[ string( level ) ].push_back( string( description ) );
}

void Group::appendLogLevelDescription( string_view levelCondition, string_view logDescription )
{
Wrapper< integer > * wrapper = getWrapperPointer< integer >( viewKeyStruct::logLevelString() );
Expand All @@ -93,7 +88,7 @@ void Group::appendLogLevelDescription( string_view levelCondition, string_view l
wrapper->setApplyDefaultValue( 0 );
wrapper->setInputFlag( InputFlags::OPTIONAL );
}
addLogLevelEntry( levelCondition, logDescription );
m_logLevelsDescriptions[ string( levelCondition ) ].push_back( string( logDescription ) );
wrapper->buildLogLevelDescription( m_logLevelsDescriptions );
}

Expand Down
7 changes: 0 additions & 7 deletions src/coreComponents/dataRepository/Group.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1486,13 +1486,6 @@ class Group
integer getLogLevel() const { return m_logLevel; }
///@}

/**
* @brief Add an entry to the description map
* @param level The log level key
* @param description The log description value
*/
void addLogLevelEntry( string_view level, string_view description );

/**
* @brief Performs re-initialization of certain variable depending on the solver being used.
*/
Expand Down

0 comments on commit c56f007

Please sign in to comment.