Thread: Removing CONTEXT message
Hi all,
I know I can remove the CONTEXT messages from the file log with:
I know I can remove the CONTEXT messages from the file log with:
SET log_error_verbosity = terse
Is there any possibility to remove it from the client pgAdmin Query messages
as well ?
TIA,
Sabin
Is there any possibility to remove it from the client pgAdmin Query messages
as well ?
TIA,
Sabin
"Sabin Coanda" <sabin.coanda@deuromedia.ro> writes: > I know I can remove the CONTEXT messages from the file log with: > SET log_error_verbosity = terse > Is there any possibility to remove it from the client pgAdmin Query > messages as well ? This is the wrong place to ask; try the pgAdmin support lists. MHO: if they don't have a way to adjust the verbosity of their error output, they definitely should. regards, tom lane
Hi Tom, In fact, I found setting the configuration parameter 'client_min_messages', I get the expected results according to the documentation, and it works equivalent to 'log_min_messages ' that controls the messages of the log file. I'd just wonder an equivalent parameter as 'log_error_verbosity', but for client messages, not log file. Is it something available ? TIA, Sabin "Tom Lane" <tgl@sss.pgh.pa.us> wrote in message news:21071.1168964616@sss.pgh.pa.us... > "Sabin Coanda" <sabin.coanda@deuromedia.ro> writes: >> I know I can remove the CONTEXT messages from the file log with: >> SET log_error_verbosity = terse >> Is there any possibility to remove it from the client pgAdmin Query >> messages as well ? > > This is the wrong place to ask; try the pgAdmin support lists. > > MHO: if they don't have a way to adjust the verbosity of their error > output, > they definitely should. > > regards, tom lane > > ---------------------------(end of broadcast)--------------------------- > TIP 7: You can help support the PostgreSQL project by donating at > > http://www.postgresql.org/about/donate >
"Sabin Coanda" <sabin.coanda@deuromedia.ro> writes: > I'd just wonder an equivalent parameter as 'log_error_verbosity', but for > client messages, not log file. Is it something available ? No, because it's the client-side code's responsibility to decide how much to display. In psql there's "\set VERBOSITY", in pgAdmin I dunno but you're asking the wrong person... regards, tom lane