I am trying to find all devices options for my supercollider setup.
Running ServerOptions.devices;
( https://doc.sccode.org/Reference/AudioDeviceSelection.html ) truncates the string that is output in the "Post window". This is the output:
[ MME : Microsoft Sound Mapper - Input, MME : Line (Roland Rubix 22), MME : Microphone Array (Realtek High , MME : Microsoft Sound Mapper - Output, MME : Speakers (Realtek High Definiti, MME : Speakers (Roland Rubix 22), Windows DirectSound : Primary Sound Capture Driver, Windows DirectSound : Line (Roland Rubix 22), Windows DirectSound : Microphone Array (Realtek High Definition Audio), Windows DirectSound : Primary Sound Driver, Windows DirectSound : Speakers (Realtek High Definition Audio), Windows Direc...etc...
Is there a way to make the log display the entire content of the string?
This looks like an array. Try:
ServerOptions.devices.do({|dev|
dev.postln;
});