mirror of
				https://github.com/optim-enterprises-bv/Mailu.git
				synced 2025-11-03 19:47:52 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			348 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			348 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import flask_debugtoolbar
 | 
						|
 | 
						|
from werkzeug.middleware.profiler import ProfilerMiddleware
 | 
						|
 | 
						|
 | 
						|
# Debugging toolbar
 | 
						|
toolbar = flask_debugtoolbar.DebugToolbarExtension()
 | 
						|
 | 
						|
 | 
						|
# Profiler
 | 
						|
class Profiler(object):
 | 
						|
    def init_app(self, app):
 | 
						|
        app.wsgi_app = ProfilerMiddleware(
 | 
						|
            app.wsgi_app, restrictions=[30]
 | 
						|
        )
 | 
						|
 | 
						|
profiler = Profiler()
 |