How to use observable instead of complete callback / Angular @11

I wander how I can resolve this.

this.signupForm.valueChanges.subscribe(
    (value) => console.log(value);
  )

I obtain a message:

Subscription is deprecated. Use an observer instead of complete
callback