Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
node_crisp
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
web
node_crisp
Commits
066e709f
Commit
066e709f
authored
Nov 24, 2021
by
Gabriel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Edita logger config
parent
4738a878
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
index.js
index.js
+2
-1
index.js
logger/index.js
+1
-1
No files found.
index.js
View file @
066e709f
...
...
@@ -15,7 +15,8 @@ crisp.CrispClient.plugin.getConnectAccount()
.
then
(
account
=>
{
console
.
log
(
'El chatbot esta escuchando eventos'
);
logger
.
info
(
'Servicio iniciado'
);
logger
.
info
(
"Plugin ID:"
,
account
.
plugin_id
);
logger
.
info
(
"Plugin ID:"
);
logger
.
info
(
account
.
plugin_id
);
})
.
catch
(
error
=>
{
console
.
error
(
'Error al inicializar el chatbot: '
,
error
);
...
...
logger/index.js
View file @
066e709f
...
...
@@ -15,7 +15,7 @@ const logger = winston.createLogger({
defaultMeta
:
{
service
:
'chatbot'
},
transports
:
[
// Guardar logs con nivel `error` y por debajo en `error.log`
new
winston
.
transports
.
File
({
filename
:
'logs/error.log'
,
level
:
'error'
}),
new
winston
.
transports
.
File
({
filename
:
'logs/error.log'
,
level
:
'error'
,
handleRejections
:
true
}),
// Guardar logs con nivel `info` y por debajo en `info.log`
new
winston
.
transports
.
File
({
filename
:
'logs/info.log'
}),
],
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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