Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
integration
prechecker
Commits
fa64202a
Commit
fa64202a
authored
Sep 25, 2013
by
Andrew Nicols
Browse files
MDL-41985 JavaScript: Add option to filter YUI logging statements
parent
bc29e8f0
Changes
2
Hide whitespace changes
Inline
Side-by-side
config-dist.php
View file @
fa64202a
...
...
@@ -489,6 +489,24 @@ $CFG->admin = 'admin';
// Prevent JS caching
// $CFG->cachejs = false; // NOT FOR PRODUCTION SERVERS!
//
// Restrict which YUI logging statements are shown in the browser console.
// For details see the upstream documentation:
// http://yuilibrary.com/yui/docs/api/classes/config.html#property_logInclude
// http://yuilibrary.com/yui/docs/api/classes/config.html#property_logExclude
// $CFG->yuiloginclude = array(
// 'moodle-core-dock-loader' => true,
// 'moodle-course-categoryexpander' => true,
// );
// $CFG->yuilogexclude = array(
// 'moodle-core-dock' => true,
// 'moodle-core-notification' => true,
// );
//
// Set the minimum log level for YUI logging statements.
// For details see the upstream documentation:
// http://yuilibrary.com/yui/docs/api/classes/config.html#property_logLevel
// $CFG->yuiloglevel = 'debug';
//
// Prevent core_string_manager application caching
// $CFG->langstringcache = false; // NOT FOR PRODUCTION SERVERS!
//
...
...
lib/outputrequirementslib.php
View file @
fa64202a
...
...
@@ -249,6 +249,17 @@ class page_requirements_manager {
$this
->
YUI_config
->
debug
=
false
;
}
// Include the YUI config log filters.
if
(
!
empty
(
$CFG
->
yuilogexclude
)
&&
is_array
(
$CFG
->
yuilogexclude
))
{
$this
->
YUI_config
->
logExclude
=
$CFG
->
yuilogexclude
;
}
if
(
!
empty
(
$CFG
->
yuiloginclude
)
&&
is_array
(
$CFG
->
yuiloginclude
))
{
$this
->
YUI_config
->
logInclude
=
$CFG
->
yuiloginclude
;
}
if
(
!
empty
(
$CFG
->
yuiloglevel
))
{
$this
->
YUI_config
->
logLevel
=
$CFG
->
yuiloglevel
;
}
// Add the moodle group's module data.
$this
->
YUI_config
->
add_moodle_metadata
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment