skip to Main Content

After updating to iOS 17 and Xcode 15, the following warning appears in Xcode:

-warning-
nw_parameters_set_source_application_by_bundle_id_internal Failed to convert from bundle ID (my bundel ID) to UUID. This could lead to wrong data usage accounting.

How do I solve this problem?

It worked great before and I didn’t change anything.

2

Answers


  1. Seems like we can ignore that.

    Apples answer in Apples forum: "I’d classify that as log noise."

    Login or Signup to reply.
  2. Is there any way to ignore then, I mean, hide this messages from console?

    Something like this, or so:

    #if DEBUG
    // Avoiding log noise about constraints.
    UserDefaults.standard.set(false, forKey: "_UIConstraintBasedLayoutLogUnsatisfiable")
    #endif
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search