Skip to content

Instantly share code, notes, and snippets.

@brendandahl
Created September 18, 2015 16:35
Show Gist options
  • Save brendandahl/841a319d3194516288fc to your computer and use it in GitHub Desktop.
Save brendandahl/841a319d3194516288fc to your computer and use it in GitHub Desktop.
Print to the browser console, works in fennec and desktop.
#include "nsIConsoleService.h"
void someFunction() {
uint32_t loadType = 25;
nsCOMPtr<nsIConsoleService> consoleService = do_GetService(NS_CONSOLESERVICE_CONTRACTID);
if (consoleService) {
nsAutoCString message(nsPrintfCString("!!!!!!!!!!!!!!!!!!! LOAD TYPE %X", loadType));
consoleService->LogStringMessage(NS_ConvertUTF8toUTF16(message).get());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment