CAShow() not outputting to console

Trying to test the state of an AUGraph in a Swift 4.0. I added the follwing method to track the state of the Graph :


         
CAShow(UnsafeMutablePointer(self.audioGraph!))


I am not seeing anything output to the Console, however.


I've stepped through the code and the AUGraph and AUNodes seem to be created and instantiated successfully..


Is this an indication the AUGraph does not exist ... Or have I used this AudioToolBox method incorrectly?


Cross posted on SO.

Do this

    CAShow(UnsafeMutablePointer<AUGraph>(self.audioGraph!))

Thanks


https://stackoverflow.com/questions/47352253/cashow-not-outputting-to-console?noredirect=1#comment82063906_47352253


I tried your method without luck either?


I am using xCode 9.1 ... starting to wonder if AUGrpah's imminent deperctation has something to do with it?

CAShow() not outputting to console
 
 
Q