Explorar el Código

Add stack to js logging

Denis K hace 8 años
padre
commit
a7bb07d31a

+ 1 - 1
jet/static/jet/js/src/features/changeform-tabs.js

@@ -81,7 +81,7 @@ ChangeFormTabs.prototype = {
             this.initTabs();
             this.updateErrorState();
         } catch (e) {
-            console.error(e);
+            console.error(e, e.stack);
         }
     }
 };

+ 1 - 1
jet/static/jet/js/src/features/related-popups.js

@@ -221,7 +221,7 @@ RelatedPopups.prototype = {
             this.initDeleteRelatedCancellation();
             this.overrideRelatedGlobals();
         } catch (e) {
-            console.error(e);
+            console.error(e, e.stack);
         }
     }
 };

+ 1 - 1
jet/static/jet/js/src/features/scroll-to-bottom-detector.js

@@ -21,7 +21,7 @@ ScrollToBottomDetector.prototype = {
         try {
             this.initDetector();
         } catch (e) {
-            console.error(e);
+            console.error(e, e.stack);
         }
     }
 };

+ 1 - 1
jet/static/jet/js/src/features/siblings.js

@@ -12,7 +12,7 @@ Siblings.prototype = {
         try {
             this.moveSiblings(this.$siblings);
         } catch (e) {
-            console.error(e);
+            console.error(e, e.stack);
         }
 
         this.$siblings.addClass('initialized');

+ 1 - 1
jet/static/jet/js/src/features/sidebar/application-pinning.js

@@ -104,7 +104,7 @@ SideBarApplicationPinning.prototype = {
             this.initApplicationPinning(this.$sidebar);
             this.initAppsHide(this.$sidebar);
         } catch (e) {
-            console.error(e);
+            console.error(e, e.stack);
         }
     }
 };

+ 1 - 1
jet/static/jet/js/src/features/sidebar/bookmarks.js

@@ -138,7 +138,7 @@ SideBarBookmarks.prototype = {
             this.initBookmarksAdding(this.$sidebar);
             this.initBookmarksRemoving(this.$sidebar);
         } catch (e) {
-            console.error(e);
+            console.error(e, e.stack);
         }
     }
 };

+ 1 - 1
jet/static/jet/js/src/features/sidebar/main.js

@@ -39,7 +39,7 @@ SideBar.prototype = {
             this.initScrollBars($sidebar);
             this.initSideBarToggle();
         } catch (e) {
-            console.error(e);
+            console.error(e, e.stack);
         }
 
         $sidebar.addClass('initialized');

+ 1 - 1
jet/static/jet/js/src/features/sidebar/popup.js

@@ -194,7 +194,7 @@ SideBarPopup.prototype = {
             this.initSectionsSearch(this.$sidebar);
             this.initSectionLists(this.$sidebar);
         } catch (e) {
-            console.error(e);
+            console.error(e, e.stack);
         }
     }
 };

+ 1 - 1
jet/static/jet/js/src/features/tooltips.js

@@ -18,7 +18,7 @@ Tooltips.prototype = {
                 });
             }
         } catch (e) {
-            console.error(e);
+            console.error(e, e.stack);
         }
     }
 };

+ 1 - 1
jet/static/jet/js/src/layout-updaters/actions.js

@@ -43,7 +43,7 @@ ActionsUpdater.prototype = {
             this.wrapLabels($actions);
             this.moveActions($actions);
         } catch (e) {
-            console.error(e);
+            console.error(e, e.stack);
         }
 
         $actions.addClass('initialized');

+ 1 - 1
jet/static/jet/js/src/layout-updaters/branding.js

@@ -11,7 +11,7 @@ BrandingUpdater.prototype = {
         try {
             $branding.detach().prependTo($('.sidebar-wrapper'));
         } catch (e) {
-            console.error(e);
+            console.error(e, e.stack);
         }
 
         $branding.addClass('initialized');

+ 1 - 1
jet/static/jet/js/src/layout-updaters/breadcrumbs.js

@@ -22,7 +22,7 @@ BreadcrumbsUpdater.prototype = {
             this.replaceSeparators($breadcrumbs);
             this.scrollToEnd($breadcrumbs);
         } catch (e) {
-            console.error(e);
+            console.error(e, e.stack);
         }
 
         $breadcrumbs.addClass('initialized');

+ 1 - 1
jet/static/jet/js/src/layout-updaters/changeform-tabs.js

@@ -67,7 +67,7 @@ ChangeFormTabsUpdater.prototype = {
             var tabs = this.findTabs($modules, $inlines);
             this.createTabs($contentWrappers, tabs);
         } catch (e) {
-            console.error(e);
+            console.error(e, e.stack);
         }
     }
 };

+ 1 - 1
jet/static/jet/js/src/layout-updaters/delete-confirmation.js

@@ -9,7 +9,7 @@ DeleteConfirmationUpdater.prototype = {
                 $('body').addClass('delete-confirmation');
             }
         } catch (e) {
-            console.error(e);
+            console.error(e, e.stack);
         }
     }
 };

+ 1 - 1
jet/static/jet/js/src/layout-updaters/paginator.js

@@ -80,7 +80,7 @@ PaginatorUpdater.prototype = {
             this.wrapPages();
             this.wrapTextNodes();
         } catch (e) {
-            console.error(e);
+            console.error(e, e.stack);
         }
 
         this.$paginator.addClass('initialized');

+ 1 - 1
jet/static/jet/js/src/layout-updaters/related-widget-wrapper.js

@@ -31,7 +31,7 @@ RelatedWidgetWrapperUpdater.prototype = {
         try {
             this.updateLinkIcons();
         } catch (e) {
-            console.error(e);
+            console.error(e, e.stack);
         }
     }
 };

+ 1 - 1
jet/static/jet/js/src/layout-updaters/stacked-inline.js

@@ -22,7 +22,7 @@ StackedInlineUpdater.prototype = {
         try {
             this.updateObjectLinks();
         } catch (e) {
-            console.error(e);
+            console.error(e, e.stack);
         }
 
         this.$inline.addClass('initialized');

+ 1 - 1
jet/static/jet/js/src/layout-updaters/tabular-inline.js

@@ -34,7 +34,7 @@ TabularInlineUpdater.prototype = {
         try {
             this.updateOriginalCell();
         } catch (e) {
-            console.error(e);
+            console.error(e, e.stack);
         }
 
         this.$inline.addClass('initialized');

+ 2 - 2
jet/static/jet/js/src/layout-updaters/toolbar.js

@@ -101,13 +101,13 @@ ToolbarUpdater.prototype = {
             this.updateToolbar($toolbar);
             this.moveFilters(this.$changelist, $toolbar);
         } catch (e) {
-            console.error(e);
+            console.error(e, e.stack);
         }
 
         try {
             this.fixFloatLineBreak();
         } catch (e) {
-            console.error(e);
+            console.error(e, e.stack);
         }
 
         $toolbar.addClass('initialized');

+ 1 - 1
jet/static/jet/js/src/layout-updaters/user-tools.js

@@ -38,7 +38,7 @@ UserToolsUpdater.prototype = {
         try {
             this.updateUserTools(this.$usertools);
         } catch (e) {
-            console.error(e);
+            console.error(e, e.stack);
         }
 
         this.$usertools.addClass('initialized');