Supercollider 在 Post window 中截断控制台输出

Supercollider is truncating console output in Post window

我正在尝试为我的超级对撞机设置找到所有设备选项。

运行 ServerOptions.devices; ( https://doc.sccode.org/Reference/AudioDeviceSelection.html ) 截断在“Post window”中输出的字符串。这是输出:

[ 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...

有没有办法让日志显示字符串的全部内容?

这看起来像一个数组。尝试:

ServerOptions.devices.do({|dev|
  dev.postln;
});