layout | title | description | sidebarType |
---|---|---|---|
page_v2 |
Troubleshooting Overview |
Troubleshooting Overview |
7 |
Enable javascript console trace messages by adding ?pbjs_debug=true
to the end of the page's URL. These messages can help isolate issues and improve debugging efforts.
There are several ways to get more debug info from Prebid Server:
One of these parameters needs to be added to the OpenRTB:
"test":1
-- this will inform the bidders that this should be treated as a test (non-billable) request, and also provide additional debug info in the OpenRTB response."debug":1
-- this just adds the additional debug info.
{% highlight bash %} POST https://prebid-server.rubiconproject.com/openrtb2/auction { ... "test":1 } {% endhighlight %}
There are two ways to turn on the OpenRTB test
flag from Prebid.js:
-
Add ?pbjs_debug=true to the URL of the page.
-
Add the following
setConfig
to the page:
{% highlight bash %} pbjs.setConfig({"debug":true}); {% endhighlight %}