Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
vtigercrm
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
Welcome to Vtiger Community. To gain access for account, please contact [ community @ vtiger.com ]
Show more breadcrumbs
Madhuk
vtigercrm
Commits
3bb050d5
Commit
3bb050d5
authored
11 months ago
by
Prasad
Browse files
Options
Downloads
Patches
Plain Diff
Fixes
#1816
: Typo in LOGLEVEL_DEBUG flag name
parent
0c4c8699
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
config.performance.php
+1
-1
1 addition, 1 deletion
config.performance.php
modules/Vtiger/helpers/Logger.php
+1
-1
1 addition, 1 deletion
modules/Vtiger/helpers/Logger.php
with
2 additions
and
2 deletions
config.performance.php
+
1
−
1
View file @
3bb050d5
...
...
@@ -10,7 +10,7 @@
/* Performance paramters can be configured to fine tune vtiger CRM runtime */
$PERFORMANCE_CONFIG
=
Array
(
// Enable Vtiger Log Level for debugging only if requried
'LOGLEVE
l
_DEBUG'
=>
false
,
'LOGLEVE
L
_DEBUG'
=>
false
,
// Should the caller information be captured in SQL Logging?
// It adds little overhead for performance but will be useful to debug
...
...
This diff is collapsed.
Click to expand it.
modules/Vtiger/helpers/Logger.php
+
1
−
1
View file @
3bb050d5
...
...
@@ -32,7 +32,7 @@ class Logger {
if
(
!
self
::
$initialized
)
{
global
$PERFORMANCE_CONFIG
;
// Check if the performance config is set and debug logging is enabled
if
(
isset
(
$PERFORMANCE_CONFIG
)
&&
isset
(
$PERFORMANCE_CONFIG
[
'LOGLEVE
l
_DEBUG'
])
&&
$PERFORMANCE_CONFIG
[
'LOGLEVE
l
_DEBUG'
])
{
if
(
isset
(
$PERFORMANCE_CONFIG
)
&&
isset
(
$PERFORMANCE_CONFIG
[
'LOGLEVE
L
_DEBUG'
])
&&
$PERFORMANCE_CONFIG
[
'LOGLEVE
L
_DEBUG'
])
{
// Set the default log level to 100 and the log file path
self
::
$logLevel
=
100
;
self
::
$filePath
=
"logs/vtigercrm.log"
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment