Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

nw_host_stats_add_src recv too small, received 24, expected 28

nw_host_stats_add_src recv too small, received 24, expected 28

So I'm getting this appear in the console and I'm not sure whether it is an issue that I should be bothered about or not. I noticed it after attaching my app to Firebase and writing to the database with anonymous sign in. Just wondering whether I need to do anything about this and if so what those actions would be.

Thanks!

like image 629
Haris Avatar asked Dec 21 '16 23:12

Haris


3 Answers

This is a bug with logs in Xcode8 + iOS10.


We can get round it in this way:

When on simulator, add the Name OS_ACTIVITY_MODE and the Value Variables disable and check it (Product -> Scheme -> Edit Scheme -> Run -> Arguments -> Environment).

enter image description here

When on device, only add OS_ACTIVITY_MODE and check it(don't add the Value). You'll see the NSLog in the Xcode8 Console.

enter image description here

like image 73
Igor Avatar answered Nov 20 '22 21:11

Igor


Cause: iOS 10 & Xcode 8. Also can be replicated by an odd inputField bug:

Issue belongs to an InputField whom width is smaller than the inputs chars : 96px vs (4 * 28px) This leads to a 100% CPU and it is fixed when width is set to 128px

Link to the above fix and reasoning

Or just silence everything:

  • Press ⌘<
  • Edit simulator scheme by adding or setting the OS_ACTIVITY_MODE under Environment Variables in the Run Arguments to a value of disable.
  • Do the same for the device but remove the value for OS_ACTIVITY_MODE , leaving it empty. The logs will display for the device as they should.
like image 34
lukeswitz Avatar answered Nov 20 '22 21:11

lukeswitz


I found this answer in a video on Reddit located here: https://www.reddit.com/r/ios/comments/5p0fvy/xcode_nw_host_stats_add_src_recv_too_small/

This warning comes from XCode and can be disabled by adding an Environmental variable to the Scheme's Run section. The Environmental name is OS_ACTIVITY_MODE and the value is "disable".

This appears to suppress all of the "nw_" warning messages. Note that this just suppresses the warnings. I'm not sure if the warnings are significant or not or whether this indicates that there are "real" underlying problems that should be fixed.

How to edit a Scheme's Run Environmental Variables section in XCode

Adding the OS_ACTIVITY_MODE value of "disable"

like image 4
spencery2 Avatar answered Nov 20 '22 23:11

spencery2