Any chance to increase the buffer size of the console ?
My colleague is looking for an option to increase the buffer of the console log output.
In IDEA there seems to be at least a chance to increase the buffer by editing idea.properties - is there anything similar in AppCode ?
(Discussion for IDEA is here: http://devnet.jetbrains.net/message/5307221#5307221).
Thanks,
Christian
Please sign in to leave a comment.
Please vote for http://youtrack.jetbrains.com/issue/IDEA-63980.
There is a workaround also provided.
The described workaround used to work in previous version of AppCode (but I do not remind myself the number).
I even still have Info.plist from this previous version.
However, I installed newest AppCode version 2.0.1 on new hard disc and:
1) I have not found the key "idea.cycle.buffer.size" in Info.plist
2) I have added the key in the same place as previously but it apparently does not work:
<key>MainClass</key>
100 <string>com.intellij.idea.Main</string>
101 <key>Properties</key>
102 <dict>
103
104 <key>idea.platform.prefix</key>
105 <string>AppCode</string>
106
107 <key>idea.paths.selector</key>
108 <string>appCode20</string>
109
110 <key>idea.cycle.buffer.size</key>
111 <string>30024</string>
112
113 </dict>
Any idea about it? Has something changed?
Wrong place of adding the key?
Ps. I desperately need the longer console: the error messages are at the begining of the huge JSON....
cp /Applications/AppCode.app/bin/idea.properties ~/Library/Preferences/appCode20/
vi ~/Library/Preferences/appCode20/idea.properties
It works!
Thank you.