1 path.module path_verbose_resume()

Re-enable verbose output of messages by Path module.

This does not guarantee messages will be output. If the verbose config option in path.settings.json is disable or the user does not have the "notify of path changes" permission, messages still will not be shown. This function only re-enables the possibility of displaying messages after it has been disabled by path_verbose_disable().

File

core/modules/path/path.module, line 1057
Enables users to customize URLs and provide automatic URL alias patterns.

Code

function path_verbose_resume() {
  path_verbose_message(NULL, FALSE);
}