LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (March 2001, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Thu, 1 Mar 2001 09:19:43 -0500
Reply-To:     don.henderson@US.PWCGLOBAL.COM
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         don.henderson@US.PWCGLOBAL.COM
Subject:      Re: Output from application server
Content-type: text/plain; charset=iso-8859-1

That text is controlled by _DEBUG. _DEBUG uses powers of 2 to allow you to specify various options. The various values are described at:

http://www.sas.com/rnd/web/intrnet/dispatch/debuginp.html#list

You add the values together for the options you want, A value that contains a 2 says to include that message. The value of 2 also specifies that you want the SAS Powered Logo (or whatever logo you have specified). So if you want the logo, but not the text, you need to have the value 32. If you want neither, then use 0.

For example, if you want to have the SAS Log returned in addition to the program's output, that is _DEBUG=128. And if you also want the logo, but not the text, your _DEBUG value would be 160 (=32+128). If you also want broker to echo the name/value pairs it passes to the App Server (_DEBUG=1), the value would be 161 (=32+128+1). If you want the message with how the time info, just replace the 32 with 2 and you get 129 (=1+2+128).

In the broker.cfg file you can also specify a default value for _DEBUG to be used when the URL does not contain one. In addition, there is also mask facility if you want to disable certain values (e.g., one a production server you might want to disable the ability for the user to see the SAS log).

HTH, -don henderson

=?UNKNOWN?Q?S=F8ren?= Laursen <sun@ASB.DK>@LISTSERV.UGA.EDU> on 03/01/2001 07:15:35 AM

Please respond to =?UNKNOWN?Q?S=F8ren?= Laursen <sun@ASB.DK>

Sent by: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>

To: SAS-L@LISTSERV.UGA.EDU cc: Subject: Output from application server

Hi there,

Does anyone know how to set an option that removes the following text from a SAS/Intrnet application server:

<HR> <ADDRESS> This request took 0.23 seconds of real time (v8.0 build 1330). </ADDRESS>

Many thanks Søren Laursen

---------------------------------------------------------------- The information transmitted is intended only for the person or entity to which it is addressed and may contain confidential and/or privileged material. Any review, retransmission, dissemination or other use of, or taking of any action in reliance upon, this information by persons or entities other than the intended recipient is prohibited. If you received this in error, please contact the sender and delete the material from any computer.


Back to: Top of message | Previous page | Main SAS-L page