Piyush Naredi
Piyush Naredi

Reputation: 171

Why Console.log printing "Unrecognized event:..." in Expo React native app

When I am printing any value in my react native app console:-

for e.g.:- console.log('Printing Data')

Then it's printing data twice as follows:-

Unrecognized event: {"type":"client_log","level":"log","data":["Printing Data"]}
Printing Data

How can I prevent printing of "Unrecognized event: {..." ?

Upvotes: 1

Views: 847

Answers (1)

Champion
Champion

Reputation: 774

Sometimes it happens, try to update EXPO CLI

npm install -g expo-cli.

Upvotes: 1

Related Questions