ARSCNVIEW DebugOptions Error When Set to ShowBoundingBoxes

I am running an AR app through the Xcode beta on a device with the iOS 13 beta. My debug console is flooded with the message : "[SceneKit] Error: Pass AuthoringPass is not linked to the rendering graph and will be ignored check it's input/output." This is happens when I set the debugerOptions to showBoundingBoxes. The errors go away when the line is deleted or the options are changed to anything else.

override func viewDidLoad() {
        super.viewDidLoad()
        
        // Set the view's delegate
        sceneView.delegate = self
        
        sceneView.session.delegate = self
        
        
        locationManager.delegate = self
        locationManager.desiredAccuracy = kCLLocationAccuracyHundredMeters
        locationManager.requestWhenInUseAuthorization()
        locationManager.startUpdatingLocation()
        
        sceneView.autoenablesDefaultLighting = true
        
        sceneView.debugOptions = [ARSCNDebugOptions.showBoundingBoxes]

    }

Replies

Still exists on 13.2. Also occurs with
sceneView.debugOptions = [ARSCNDebugOptions.showPhysicsShapes]
and occasionally does not show the associated physics shapes. Have you reported this?