Blynk does not send Notification

Hi Everone,
Here isa part of my code trying to get notification from Blynk. However, I can get any notificatio and the timeline shows no event for the notification

  if ( forceReading2>1000 ) {
      digitalWrite(PUMP_PIN, HIGH); // Turn the pump on
      //notification.notify("Pump is On!"); // Send a notification that the pump is on
      Blynk.virtualWrite(V3,1);
      Blynk.logEvent("PUMPON","Pump is turned ON !!");

      Blynk.virtualWrite(V4,0);  
      delay(80000);  
   
      Blynk.virtualWrite(V4,1);
      tone(BUZZER_PIN, 1000, 10000); // Generate a 1000 Hz tone
      digitalWrite(PUMP_PIN, LOW);
      Blynk.virtualWrite(V3,0); 
      delay(10000); 
      Blynk.virtualWrite(V4,0);
      delay(10000);      
       
      }    


Hello,

Please, try reading this Events, Notifications and the use of "Flag" variables
Maybe you will find the answer

Regards

You should avoid delay because it’s a blocking function. The blocking function prevents the program from executing any additional actions until the current task has been completed.

Noted with thansk, but I think it is ok becaause I want the system to for a certain time when the pump is On

Thank you, I noticed I inserted the event name instead of the event code