Skip to content
This repository has been archived by the owner on Sep 7, 2024. It is now read-only.

Commit

Permalink
Merge branch 'add_profiling_logs' into 5.1.x
Browse files Browse the repository at this point in the history
rainboyan committed Jun 6, 2022
2 parents ec447b6 + 9e598d4 commit a462959
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -261,7 +261,9 @@ class GroovyPagesGrailsPlugin extends Plugin {
}

// Now go through tag libraries and configure them in Spring too. With AOP proxies and so on
for (taglib in application.tagLibClasses) {
def start = System.currentTimeMillis()
def taglibs = application.getArtefacts(TagLibArtefactHandler.TYPE)
for (taglib in taglibs) {

final tagLibClass = taglib.clazz

@@ -273,6 +275,7 @@ class GroovyPagesGrailsPlugin extends Plugin {
//bean.scope = 'request'
}
}
log.info(String.format("Found %d TagLibs: initialization completed in %d ms", taglibs.size(), (System.currentTimeMillis() - start)))

errorsViewStackTracePrinter(ErrorsViewStackTracePrinter, ref('grailsResourceLocator'))
filteringCodecsByContentTypeSettings(FilteringCodecsByContentTypeSettings, application)

0 comments on commit a462959

Please sign in to comment.