Sublime Forum

Remove unwanted messages from compiler

#1

Hello!

Im currently using a compiler in Sublime T 3 in order to compile .pwn into .amx. (pawn)
However, the process is working fine, but is there any way to avoid having the unnecessary messages except for the errors and warnings?

Picture:

Thanks for any help!

~den

1 Like

Sublime after running python will output some unnecessary information
#2

It’s probably because the executed program (the compiler) return a non zero exit code.

You can add this to you sublime-build file:

"quiet": true
0 Likes

#3

Thankyou, I’ll give that a try :smile:

0 Likes