This is just some static backup of the original site, don't expect every link to work!

Changeset 13e2d2


Ignore:
Timestamp:
Sep 9, 2018, 6:01:58 PM (4 years ago)
Author:
rene <rene@…>
Branches:
ng_0.9
Children:
f2a2d5
Parents:
e58c57
Message:

changed logging

Location:
modules
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • modules/vI_log.js

    re58c57 r13e2d2  
    228228    root.addAppender(capp);
    229229
    230     dump("*** making ConsoleAppender robust against empty messages\n");
     230//     dump("*** making ConsoleAppender robust against empty messages\n");
    231231    // original implementation of doAppend dies if message data is empty
    232232    capp.doAppend = function CApp_doAppend(message) {
  • modules/vI_rdfDatasource.js

    re58c57 r13e2d2  
    344344
    345345  clean: function () {
     346    Log.debug("rdfDatasource clean");
    346347    if (!this._dontRegisterObserver) this.AccountManagerObserver.unregister();
    347348    this._flush();
     
    364365
    365366  cleanAccountInfo: function () {
    366     Log.debug("cleanAccountInfo");
     367    Log.debug("rdfDatasource cleanAccountInfo");
    367368
    368369    var enumerator = this._identityContainer.GetElements();
     
    396397
    397398  searchIdentityMismatch: function () {
    398     Log.debug("searchIdentityMismatch");
     399    Log.debug("rdfDatasource searchIdentityMismatch");
    399400
    400401    var relevantIDs = this.getRelevantIDs();
     
    476477
    477478  storeAccountInfo: function () {
    478     Log.debug("storeAccounts");
     479    Log.debug("rdfDatasource storeAccountInfo");
    479480    var accounts = getAccountsArray();
    480481    for (let acc = 0; acc < accounts.length; acc++) {
     
    854855function rdfDatasourceAccess(currentWindow) {
    855856  this._currentWindow = currentWindow;
    856   this._rdfDataSource = new rdfDatasource(this._currentWindow, "virtualIdentity_0.10.rdf", false);
     857  this._rdfDataSource = new rdfDatasource(this._currentWindow, "virtualIdentity_0.10.rdf", true);
    857858  this.stringBundle = Services.strings.createBundle("chrome://v_identity/locale/v_identity.properties");
    858859}
Note: See TracChangeset for help on using the changeset viewer.