Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8011223
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T18:57:57+00:00 2026-06-04T18:57:57+00:00

I’ve implemented the Channel API w/ persistence. When I make a channel and connect

  • 0

I’ve implemented the Channel API w/ persistence. When I make a channel and connect the socket (this is on the real app, not the local dev_appserver), Firebug goes nuts with log messages. I want to turn these off so I can see my OWN logs but cant find any documentation on how to disable the Channel API console logging.

one thing I’m probably doing differently than most is that I’m connecting cross-domain… which the Channel API supports (note the first message in the stream… if you can view that pic)

enter image description here

Does anyone know?


UPDATE

I finally realized that my code was creating two channels and trying to open/connect them both at the same time… and that was why I was getting a flood of messages. I didn’t mean to do this (I know the rules: https://developers.google.com/appengine/docs/python/channel/overview#Caveats )… it was a bug… and once I fixed it, the messages went back to manageable level.

yay

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T18:57:58+00:00Added an answer on June 4, 2026 at 6:57 pm

    There doesn’t appear to be a way to shutoff the Firebug timeStamp log. One way to solve this problem is to edit the code and remove this functionality yourself:

    Unpack the extension to a directory in your Mozilla Firefox Profile:

    Change directory to your Firefox profile extensions directory. On Ubuntu, this would be something like this:

    cd ~/.mozilla/firefox/{random-string}/extensions/
    

    The Firebug extension is identified by firebug@software.joehewitt.com.xpi. Create a new directory of the same name, but without the .xpi, and move the XPI into that directory:

    mkdir firebug@software.joehewitt.com
    mv firebug@software.joehewitt.com.xpi firebug@software.joehewitt.com
    

    Next, change directories to your newly created Firebug directory, and unpack the extension:

    cd firebug@software.joehewitt.com
    unzip firebug@software.joehewitt.com.xpi
    

    All of the files should be unpacked so that the extension’s directories are in the current directory. Your file structure will look something like this:

    $: ~/.mozilla/firefox/{random-string}/extensions/firebug@software.joehewitt.com$ l
    chrome.manifest  defaults/  firebug@software.joehewitt.com.xpi  install.rdf  locale/   skin/
    content/         docs/      icons/                              license.txt  modules/
    

    $: ~/.mozilla/firefox/ghlfe0bb.ff5.0/extensions/firebug@software.joehewitt.com$

    Open consoleExposed.js in your text editor:

    Next, change to the content/firebug/console directory:

    cd content/firebug/console
    

    Edit the consoleExposed.js file using your favorite editor:

    vim consoleExposed.js
    

    Disable console.timeStamp:

    On or near line 215, you’ll see the following function:

    console.timeStamp = function(label)
    {  
        label = label || "";
    
        if (FBTrace.DBG_CONSOLE)
            FBTrace.sysout("consoleExposed.timeStamp; " + label);
    
        var now = new Date();
        Firebug.NetMonitor.addTimeStamp(context, now.getTime(), label);
    
        var formattedTime = now.getHours() + ":" + now.getMinutes() + ":" +
            now.getSeconds() + "." + now.getMilliseconds();
        return logFormatted([formattedTime, label], "timeStamp");
    };
    

    Right after the first curly-brace, force the function to return nothing:

    console.timeStamp = function(label)
    {   return ;   // disable timestamp by returning
        label = label || "";
    
        if (FBTrace.DBG_CONSOLE)
    

    Restart Firefox and enjoy a world without timeStamp:

    After the edits, restart Firebug. You should no longer see the log messages for timeStamp in your console.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
link Im having trouble converting the html entites into html characters, (&# 8217;) i
For some reason, after submitting a string like this Jack’s Spindle from a text
this is what i have right now Drawing an RSS feed into the php,
I have this code to decode numeric html entities to the UTF8 equivalent character.
We're building an app, our first using Rails 3, and we're having to build
I have this code: - (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString
Does anyone know how can I replace this 2 symbol below from the string
I need a function that will clean a strings' special characters. I do NOT

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.