File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @codebolt/codeboltjs" ,
3
- "version" : " 2.0.5 " ,
3
+ "version" : " 2.0.6 " ,
4
4
"description" : " " ,
5
5
"keywords" : [],
6
6
"author" : " " ,
Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ class Codebolt {
40
40
* @description Initializes the websocket connection.
41
41
*/
42
42
constructor ( ) {
43
+ console . log ( "Codebolt Agent initialized" ) ;
43
44
cbws . initializeWebSocket ( )
44
45
this . websocket = cbws . getWebsocket ;
45
46
@@ -109,6 +110,7 @@ class Codebolt {
109
110
const waitForConnection = ( ) => {
110
111
if ( cbws . messageManager ) {
111
112
const handleUserMessage = async ( response : any ) => {
113
+ console . log ( "Message received By Agent Library Starting Custom Agent Handler Logic" , response ) ;
112
114
if ( response . type === "messageResponse" ) {
113
115
try {
114
116
const result = await handler ( response ) ;
You can’t perform that action at this time.
0 commit comments