File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -173,8 +173,10 @@ void InputFile::setupUnwrapping( const ProfileLoader::Profile& profile )
173
173
throw std::runtime_error ( msg );
174
174
}
175
175
176
- // set profile
177
- LOG_INFO ( " Setup unwrapping with:\n " << profile )
176
+ if ( ! profile.empty () )
177
+ {
178
+ LOG_INFO ( " Setup unwrapping with:\n " << profile )
179
+ }
178
180
179
181
for ( ProfileLoader::Profile::const_iterator it = profile.begin (); it != profile.end (); ++it )
180
182
{
Original file line number Diff line number Diff line change @@ -223,7 +223,10 @@ void OutputFile::setupWrapping( const ProfileLoader::Profile& profile )
223
223
throw std::runtime_error ( msg );
224
224
}
225
225
226
- LOG_INFO ( " Setup wrapping with:\n " << profile )
226
+ if ( ! profile.empty () )
227
+ {
228
+ LOG_INFO ( " Setup wrapping with:\n " << profile )
229
+ }
227
230
228
231
// check if output format indicated is valid with the filename extension
229
232
if ( ! matchFormat ( profile.find ( constants::avProfileFormat )->second , getFilename () ) )
You can’t perform that action at this time.
0 commit comments