Change record status: 
Introduced in branch: 
master
Introduced in version: 
master
Description: 

In order to have a good log reading experience, we need to keep meaningful log messages with a proper context within

The issue has been caught here

Before

...
        if($type == 'program') {
          
          if ($feed['profile_media_videos'] != NULL || $feed['profile_media_images'] != NULL) {
          \Drupal::logger('272')->notice($type);
...

After

...
        if($type == 'program') {
          
          if ($feed['profile_media_videos'] != NULL || $feed['profile_media_images'] != NULL) {
          \Drupal::logger('form_import')->notice("FORM IMPORT: type is $type");
...
Impacts: 
Module developers