File tree Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 44
55### Django update (ongoing)  
66
7- *  Support Django 4.0
8- *  include other Django enhancements brought up by the community
9- 
10- By: @BeryJu   (#1526  )
7+ -  Instrument Django Signals so they show up in "Performance" view (#1526  ) by @BeryJu  
8+ -  include other Django enhancements brought up by the community
119
1210### Various fixes & improvements  
1311
Original file line number Diff line number Diff line change @@ -177,6 +177,9 @@ def _prepare_event(
177177            and  "threads"  not  in   event 
178178        ):
179179            with  capture_internal_exceptions ():
180+                 import  ipdb 
181+ 
182+                 ipdb .set_trace ()
180183                event ["threads" ] =  {
181184                    "values" : [
182185                        {
Original file line number Diff line number Diff line change @@ -215,6 +215,9 @@ def _emit(self, record):
215215            event  =  {}
216216            hint  =  {}
217217            with  capture_internal_exceptions ():
218+                 import  ipdb 
219+ 
220+                 ipdb .set_trace ()
218221                event ["threads" ] =  {
219222                    "values" : [
220223                        {
Original file line number Diff line number Diff line change @@ -514,6 +514,10 @@ def current_stacktrace(with_locals=True):
514514    __tracebackhide__  =  True 
515515    frames  =  []
516516
517+     import  ipdb 
518+ 
519+     ipdb .set_trace ()
520+ 
517521    f  =  sys ._getframe ()  # type: Optional[FrameType] 
518522    while  f  is  not   None :
519523        if  not  should_hide_frame (f ):
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments