")
}
+ })
- log.Printf("[TEMP CONSUME] Stream:%s|%s", streamName, logMessage)
- }
- // goroutine for MQ stream consumers
- go func() {
- _, err := h.env.NewConsumer(streamName, messagesHandler,
- stream.NewConsumerOptions().SetOffset(stream.OffsetSpecification{}.First()))
+ // Serve debug files
+ http.Handle("/debug/", http.StripPrefix("/debug/", http.FileServer(http.Dir("/tmp/data/debug"))))
+
+ // WebSocket endpoint
+ http.HandleFunc("/ws", h.handleWS)
+
+ // Serve HLS files
+ http.Handle("/hls/", http.StripPrefix("/hls/", http.FileServer(http.Dir("/tmp/data"))))
+
+ // TODO OPTIONAL: Add low-latency optimized headers
+ //http.HandleFunc("/hls/", func(w http.ResponseWriter, r *http.Request) {
+ // if strings.HasSuffix(r.URL.Path, ".m3u8") {
+ // w.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
+ // w.Header().Set("Pragma", "no-cache")
+ // w.Header().Set("Expires", "0")
+ // w.Header().Set("Access-Control-Allow-Origin", "*")
+ // w.Header().Set("X-Accel-Buffering", "no") // Disable proxy buffering
+ // } else if strings.HasSuffix(r.URL.Path, ".ts") {
+ // w.Header().Set("Cache-Control", "max-age=600") // Cache segments for 10 minutes
+ // }
+ //
+ // // Serve the file
+ // //http.FileServer(http.Dir("/tmp/data")).ServeHTTP(w, r)
+ // http.StripPrefix("/hls/", http.FileServer(http.Dir("/tmp/data"))).ServeHTTP(w, r)
+ //})
+
+ // Serve static files (inc. index.html)
+ fs := http.FileServer(http.Dir("/app/static"))
+ http.Handle("/", fs)
+
+ // Download endpoint to get the raw video segments
+ http.HandleFunc("/download/", func(w http.ResponseWriter, r *http.Request) {
+ filePath := r.URL.Path[len("/download/"):]
+ fullPath := filepath.Join("/tmp/data", filePath)
+
+ // Set headers for download
+ w.Header().Set("Content-Disposition", fmt.Sprintf("attachment; filename=%s",
+ filepath.Base(fullPath)))
+ w.Header().Set("Content-Type", "application/octet-stream")
+
+ // Open and serve the file
+ file, err := os.Open(fullPath)
if err != nil {
- logger.Fatal("Failed to create consumer", zap.Error(err))
+ http.Error(w, fmt.Sprintf("Failed to open file: %v", err), http.StatusNotFound)
return
}
+ defer file.Close()
- logger.Info("Consumer started", zap.String("stream_name", streamName))
-
- select {} // keep the goroutine alive
- // TODO WEBSOCKETS + CONSUMER CLOSE
- }()
+ _, err = io.Copy(w, file)
+ if err != nil {
+ h.videoLogger.Error(fmt.Sprintf("Failed to send file: %v", err))
+ }
+ })
+ h.videoLogger.Info("Starting WebSocket, HLS, and debug server on :8080")
+ if err := http.ListenAndServe(":8080", nil); err != nil {
+ h.videoLogger.Fatal("Web server failed", zap.Error(err))
+ }
}
diff --git a/go/server/rabbitmq/rabbitmq.go b/go/server/rabbitmq/rabbitmq.go
index 52dc8b71..f2c47d26 100644
--- a/go/server/rabbitmq/rabbitmq.go
+++ b/go/server/rabbitmq/rabbitmq.go
@@ -17,6 +17,7 @@ type RabbitMQServer struct {
instance *common_rabbitmq.RabbitMQInstance
Logger *zap.Logger
consumers []handlers.QueueConsumer
+ env *stream.Environment
}
func Init() (RabbitMQServer, error) {
@@ -113,12 +114,16 @@ func Init() (RabbitMQServer, error) {
instance: instance,
Logger: logger,
consumers: consumers,
+ env: env,
}, nil
}
// Start starts the RabbitMQ server and begins processing messages from the queues.
func (r *RabbitMQServer) Start() {
+ videoHandler := handlers.NewControllerHandler(r.instance, r.env) // Assuming env is stored or passed
+ go videoHandler.StartWebSocketServer() // Start WebSocket server once
+
for _, smartessQueue := range r.consumers {
go func(queueConsumer handlers.QueueConsumer) {
r.Logger.Info("Starting consumer", zap.String("queue", queueConsumer.RabbitmqQueue.Name))
@@ -137,7 +142,7 @@ func (r *RabbitMQServer) Start() {
}
for msg := range msgs {
r.Logger.Info("Received message", zap.String("routing_key", msg.RoutingKey), zap.String("message_body", string(msg.Body)))
- queueConsumer.MessageHandler.Handle(msg, r.Logger)
+ queueConsumer.MessageHandler.Handle(msg, r.Logger) //todo run in goroutine to avoid blocking?
}
}(smartessQueue)
diff --git a/go/server/static/debug-stream.sh b/go/server/static/debug-stream.sh
new file mode 100644
index 00000000..2f6967f7
--- /dev/null
+++ b/go/server/static/debug-stream.sh
@@ -0,0 +1,196 @@
+#!/bin/bash
+
+## TODO Run this script inside the server container to debug the video streaming setup
+## Copy the script into the server container
+#docker cp debug-stream.sh server:/app/
+#
+## Enter the container
+#docker exec -it server bash
+#
+## Run the script
+#cd /app
+#chmod +x debug-stream.sh
+#./debug-stream.sh
+
+## TODO Debug logs inside server docker
+## Check server logs
+#docker logs server
+## Examine HLS segments
+#docker exec -it server ls -la /tmp/data
+## Look for errors in the video server log
+#docker exec -it server cat /app/logs/server_video.log
+
+#--------------------------------------------------------------------------
+# This script helps debug your RTSP-to-browser video streaming setup
+# Save this to a file named debug-stream.sh and run with: bash debug-stream.sh
+
+# Colors for better readability
+GREEN='\033[0;32m'
+RED='\033[0;31m'
+BLUE='\033[0;34m'
+YELLOW='\033[1;33m'
+NC='\033[0m' # No Color
+
+echo -e "${BLUE}======= Smartess Video Stream Debugging Tool =======${NC}"
+
+# Check if FFmpeg is installed
+echo -e "${YELLOW}Checking for FFmpeg...${NC}"
+if command -v ffmpeg &> /dev/null; then
+ echo -e "${GREEN}FFmpeg is installed.${NC}"
+ FFMPEG_VERSION=$(ffmpeg -version | head -n 1)
+ echo -e "Version: $FFMPEG_VERSION"
+else
+ echo -e "${RED}FFmpeg is not installed. You will need FFmpeg for testing.${NC}"
+ echo -e "Install with: apt-get install ffmpeg (Debian/Ubuntu) or your system's package manager."
+ exit 1
+fi
+
+# Function to test accessing the HLS stream directly
+test_hls_access() {
+ local camera=$1
+ local url="http://localhost:8080/hls/$camera/segments.m3u8"
+
+ echo -e "\n${YELLOW}Testing HLS stream access for camera: $camera${NC}"
+ echo -e "URL: $url"
+
+ # Check if curl is available
+ if command -v curl &> /dev/null; then
+ HTTP_CODE=$(curl -s -o /dev/null -w "%{http_code}" $url)
+ if [ "$HTTP_CODE" == "200" ]; then
+ echo -e "${GREEN}HLS playlist is accessible (HTTP 200 OK)${NC}"
+
+ # Check playlist content
+ echo -e "\nPlaylist content:"
+ curl -s $url | head -n 10
+
+ # Check if there are segment files
+ SEGMENTS_DIR="/tmp/data/$camera"
+ if [ -d "$SEGMENTS_DIR" ]; then
+ SEGMENT_COUNT=$(ls $SEGMENTS_DIR/segment-*.ts 2>/dev/null | wc -l)
+ if [ "$SEGMENT_COUNT" -gt 0 ]; then
+ echo -e "\n${GREEN}Found $SEGMENT_COUNT segment files in $SEGMENTS_DIR${NC}"
+ ls -lh $SEGMENTS_DIR/segment-*.ts | head -n 5
+ else
+ echo -e "\n${RED}No segment files found in $SEGMENTS_DIR${NC}"
+ fi
+ else
+ echo -e "\n${RED}Segment directory $SEGMENTS_DIR does not exist${NC}"
+ fi
+ else
+ echo -e "${RED}HLS playlist is not accessible (HTTP $HTTP_CODE)${NC}"
+ fi
+ else
+ echo -e "${RED}curl is not installed. Cannot test HLS access.${NC}"
+ fi
+}
+
+# Function to test RTSP directly with FFmpeg
+test_rtsp_direct() {
+ local rtsp_url=$1
+ local output_file="/tmp/rtsp_test_$(date +%s).mp4"
+
+ echo -e "\n${YELLOW}Testing direct RTSP access with FFmpeg${NC}"
+ echo -e "RTSP URL: $rtsp_url"
+ echo -e "Will record 5 seconds to: $output_file"
+
+ echo -e "Running FFmpeg..."
+ ffmpeg -rtsp_transport tcp -i "$rtsp_url" -t 5 -c:v copy -an "$output_file" -loglevel warning
+
+ if [ -f "$output_file" ]; then
+ FILE_SIZE=$(du -h "$output_file" | cut -f1)
+ echo -e "${GREEN}Recording successful. File size: $FILE_SIZE${NC}"
+ echo -e "File saved to: $output_file"
+
+ # Show file info
+ echo -e "\nFile information:"
+ ffprobe -v quiet -print_format json -show_format -show_streams "$output_file" | grep -E 'codec_name|width|height|r_frame_rate|duration'
+ else
+ echo -e "${RED}Recording failed. No output file created.${NC}"
+ fi
+}
+
+# Function to test WebSocket connection
+test_websocket() {
+ local ws_url="ws://localhost:8080/ws"
+
+ echo -e "\n${YELLOW}Testing WebSocket connection${NC}"
+ echo -e "URL: $ws_url"
+
+ # Check if websocat is installed
+ if command -v websocat &> /dev/null; then
+ echo -e "Connecting to WebSocket for 3 seconds..."
+ timeout 3s websocat --binary $ws_url > /tmp/ws_test_$(date +%s).bin
+
+ if [ $? -eq 124 ]; then # timeout exit code
+ echo -e "${GREEN}WebSocket connection successful (timed out after 3s as expected)${NC}"
+ else
+ echo -e "${RED}WebSocket connection failed${NC}"
+ fi
+ else
+ echo -e "${RED}websocat is not installed. Cannot test WebSocket.${NC}"
+ echo -e "Install with: cargo install websocat (requires Rust)"
+ fi
+}
+
+# Function to check debug files
+check_debug_files() {
+ local debug_dir="/tmp/data/debug"
+
+ echo -e "\n${YELLOW}Checking debug files${NC}"
+
+ if [ -d "$debug_dir" ]; then
+ FILE_COUNT=$(ls -1 $debug_dir | wc -l)
+ if [ "$FILE_COUNT" -gt 0 ]; then
+ echo -e "${GREEN}Found $FILE_COUNT files in debug directory${NC}"
+ echo -e "\nRecent files:"
+ ls -lht $debug_dir | head -n 5
+ else
+ echo -e "${RED}No files found in debug directory${NC}"
+ fi
+ else
+ echo -e "${RED}Debug directory does not exist: $debug_dir${NC}"
+ fi
+}
+
+# Main menu
+while true; do
+ echo -e "\n${BLUE}========== Debug Options ==========${NC}"
+ echo "1) Test HLS access (specify camera name)"
+ echo "2) Test RTSP directly with FFmpeg"
+ echo "3) Test WebSocket connection"
+ echo "4) Check debug files"
+ echo "5) Exit"
+
+ read -p "Enter choice [1-5]: " choice
+
+ case $choice in
+ 1)
+ read -p "Enter camera name (default if empty): " camera_name
+ if [ -z "$camera_name" ]; then
+ camera_name="default"
+ fi
+ test_hls_access "$camera_name"
+ ;;
+ 2)
+ read -p "Enter RTSP URL: " rtsp_url
+ if [ -z "$rtsp_url" ]; then
+ echo -e "${RED}RTSP URL cannot be empty${NC}"
+ else
+ test_rtsp_direct "$rtsp_url"
+ fi
+ ;;
+ 3)
+ test_websocket
+ ;;
+ 4)
+ check_debug_files
+ ;;
+ 5)
+ echo -e "${BLUE}Exiting.${NC}"
+ exit 0
+ ;;
+ *)
+ echo -e "${RED}Invalid choice. Please try again.${NC}"
+ ;;
+ esac
+done
\ No newline at end of file
diff --git a/go/server/static/index.html b/go/server/static/index.html
new file mode 100644
index 00000000..0db581a3
--- /dev/null
+++ b/go/server/static/index.html
@@ -0,0 +1,1470 @@
+
+
+
+
+
+ Smartess Video Surveillance
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
1000 De La Gauchetiere
+
Unit 101
+
+
+ arrow_back
+ Back
+
+
+
+
+
+
+
+
+
+
Initializing...
+
+
+
+
+
+ Return to Live
+
+
+
+
+
+ replay_5
+
+
+ forward_5
+
+
+
+
+
+ Disconnected
+
+
+
+
+
+
+
+
+
+
Data Overview
+
Click to view detailed graphs
+
+
+
+
+
+
Connection Speed
+
0 kbps
+
+
+
+
+
+
+
+
+
+
Latency
+
0 ms
+
+
+
+
+
+
+
+
+
Select Camera
+
+
+
+
+
+
+
+
+
✕
+
Connection Speed Over Time
+
+
+
+
+
+
+
+
+
+
+
+
+
✕
+
Latency Over Time
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/smartessweb/backend/backend-logs/backend-logs.txt b/smartessweb/backend/backend-logs/backend-logs.txt
index 080a92af..d4f7c43d 100644
--- a/smartessweb/backend/backend-logs/backend-logs.txt
+++ b/smartessweb/backend/backend-logs/backend-logs.txt
@@ -1867,1319 +1867,21 @@
2025-04-01 19:55:23 - Server is running on port 3000
2025-04-01 20:26:56 - Server is initializing...
2025-04-01 20:26:56 - Server is running on port 3000
-2025-04-07 13:12:28 - Server is initializing...
-2025-04-07 13:12:28 - Server is initializing...
-2025-04-07 13:12:28 - Server is initializing...
-2025-04-07 13:12:28 - Server is initializing...
-2025-04-07 13:12:28 - Server is initializing...
-2025-04-07 13:12:28 - Server is initializing...
-2025-04-07 13:12:28 - Server is initializing...
-2025-04-07 13:12:28 - Server is initializing...
-2025-04-07 13:12:28 - Server is initializing...
-2025-04-07 13:12:56 - Server is initializing...
-2025-04-07 13:12:56 - Server is initializing...
-2025-04-07 13:12:56 - Server is initializing...
-2025-04-07 13:12:56 - Server is initializing...
-2025-04-07 13:12:56 - Server is initializing...
-2025-04-07 13:12:56 - Server is initializing...
-2025-04-07 13:12:56 - Server is initializing...
-2025-04-07 13:12:56 - Server is initializing...
-2025-04-07 13:12:56 - Server is initializing...
-2025-04-07 13:14:32 - Server is initializing...
-2025-04-07 13:14:32 - Server is initializing...
-2025-04-07 13:14:32 - Server is initializing...
-2025-04-07 13:14:32 - Server is initializing...
-2025-04-07 13:14:32 - Server is initializing...
-2025-04-07 13:14:32 - Server is initializing...
-2025-04-07 13:14:32 - Server is initializing...
-2025-04-07 13:14:32 - Server is initializing...
-2025-04-07 13:14:32 - Server is initializing...
-2025-04-07 13:17:56 - Server is initializing...
-2025-04-07 13:17:56 - Server is initializing...
-2025-04-07 13:17:56 - Server is initializing...
-2025-04-07 13:17:56 - Server is initializing...
-2025-04-07 13:17:56 - Server is initializing...
-2025-04-07 13:17:56 - Server is initializing...
-2025-04-07 13:17:56 - Server is initializing...
-2025-04-07 13:17:56 - Server is initializing...
-2025-04-07 13:17:56 - Server is initializing...
-2025-04-07 13:19:34 - Server is initializing...
-2025-04-07 13:19:34 - Server is initializing...
-2025-04-07 13:19:34 - Server is initializing...
-2025-04-07 13:19:34 - Server is initializing...
-2025-04-07 13:19:34 - Server is initializing...
-2025-04-07 13:19:34 - Server is initializing...
-2025-04-07 13:19:34 - Server is initializing...
-2025-04-07 13:19:34 - Server is initializing...
-2025-04-07 13:19:34 - Server is initializing...
-2025-04-07 13:19:36 - User type is: member
-2025-04-07 13:20:45 - Server is initializing...
-2025-04-07 13:20:45 - Server is initializing...
-2025-04-07 13:20:45 - Server is initializing...
-2025-04-07 13:20:45 - Server is initializing...
-2025-04-07 13:20:45 - Server is initializing...
-2025-04-07 13:20:45 - Server is initializing...
-2025-04-07 13:20:45 - Server is initializing...
-2025-04-07 13:20:45 - Server is initializing...
-2025-04-07 13:20:45 - Server is initializing...
-2025-04-07 13:20:47 - User type is: member
-2025-04-07 13:28:41 - Server is initializing...
-2025-04-07 13:28:41 - Server is initializing...
-2025-04-07 13:28:41 - Server is initializing...
-2025-04-07 13:28:41 - Server is initializing...
-2025-04-07 13:28:41 - Server is initializing...
-2025-04-07 13:28:41 - Server is initializing...
-2025-04-07 13:28:41 - Server is initializing...
-2025-04-07 13:28:41 - Server is initializing...
-2025-04-07 13:28:41 - Server is initializing...
-2025-04-07 13:28:43 - User type is: member
-2025-04-07 13:34:14 - Server is initializing...
-2025-04-07 13:34:14 - Server is initializing...
-2025-04-07 13:34:14 - Server is initializing...
-2025-04-07 13:34:14 - Server is initializing...
-2025-04-07 13:34:14 - Server is initializing...
-2025-04-07 13:34:14 - Server is initializing...
-2025-04-07 13:34:14 - Server is initializing...
-2025-04-07 13:34:14 - Server is initializing...
-2025-04-07 13:34:14 - Server is initializing...
-2025-04-07 13:34:16 - User type is: member
-2025-04-07 13:35:02 - Server is initializing...
-2025-04-07 13:35:02 - Server is initializing...
-2025-04-07 13:35:02 - Server is initializing...
-2025-04-07 13:35:02 - Server is initializing...
-2025-04-07 13:35:02 - Server is initializing...
-2025-04-07 13:35:02 - Server is initializing...
-2025-04-07 13:35:02 - Server is initializing...
-2025-04-07 13:35:02 - Server is initializing...
-2025-04-07 13:35:02 - Server is initializing...
-2025-04-07 13:35:04 - User type is: member
-2025-04-07 13:35:56 - Server is initializing...
-2025-04-07 13:35:56 - Server is initializing...
-2025-04-07 13:35:56 - Server is initializing...
-2025-04-07 13:35:56 - Server is initializing...
-2025-04-07 13:35:56 - Server is initializing...
-2025-04-07 13:35:56 - Server is initializing...
-2025-04-07 13:35:56 - Server is initializing...
-2025-04-07 13:35:56 - Server is initializing...
-2025-04-07 13:35:56 - Server is initializing...
-2025-04-07 13:35:58 - User type is: member
-2025-04-07 13:43:28 - Server is initializing...
-2025-04-07 13:43:29 - User type is: member
-2025-04-07 14:12:42 - Server is initializing...
-2025-04-07 14:12:43 - User type is:
-2025-04-07 14:12:43 - User type is: basic
-2025-04-07 14:14:17 - Server is initializing...
-2025-04-07 14:14:18 - User type is: basic
-2025-04-07 14:15:09 - Server is initializing...
-2025-04-07 14:15:10 - User type is: basic
-2025-04-07 14:19:32 - Server is initializing...
-2025-04-07 14:19:33 - User type is: basic
-2025-04-07 14:21:15 - Server is initializing...
-2025-04-07 14:21:16 - User type is: basic
-2025-04-07 14:21:40 - Server is initializing...
-2025-04-07 14:21:41 - User type is: basic
-2025-04-07 14:21:55 - Server is initializing...
-2025-04-07 14:21:56 - User type is: basic
-2025-04-07 14:26:14 - Server is initializing...
-2025-04-07 14:26:14 - User type is: basic
-2025-04-07 14:27:00 - Server is initializing...
-2025-04-07 14:27:00 - User type is: basic
-2025-04-07 14:27:33 - Server is initializing...
-2025-04-07 14:27:33 - User type is: basic
-2025-04-07 14:28:09 - Server is initializing...
-2025-04-07 14:28:10 - User type is: basic
-2025-04-07 14:31:19 - Server is initializing...
-2025-04-07 14:31:20 - User type is: basic
-2025-04-07 14:33:50 - Server is initializing...
-2025-04-07 14:33:51 - User type is: basic
-2025-04-07 14:34:52 - Server is initializing...
-2025-04-07 14:34:53 - User type is: basic
-2025-04-07 14:35:44 - Server is initializing...
-2025-04-07 14:35:44 - User type is: basic
-2025-04-07 14:36:08 - Server is initializing...
-2025-04-07 14:36:08 - User type is: basic
-2025-04-07 14:40:20 - Server is initializing...
-2025-04-07 14:40:20 - User type is: basic
-2025-04-07 14:43:26 - Server is initializing...
-2025-04-07 14:43:27 - User type is: basic
-2025-04-07 14:44:00 - Server is initializing...
-2025-04-07 14:44:01 - User type is: basic
-2025-04-07 14:44:20 - Server is initializing...
-2025-04-07 14:44:21 - User type is: basic
-2025-04-07 14:48:02 - Server is initializing...
-2025-04-07 14:48:02 - User type is: basic
-2025-04-07 14:48:17 - Server is initializing...
-2025-04-07 14:48:18 - User type is: basic
-2025-04-07 14:50:39 - Server is initializing...
-2025-04-07 14:50:40 - User type is: basic
-2025-04-07 14:51:24 - Server is initializing...
-2025-04-07 14:51:24 - User type is: basic
-2025-04-07 14:52:13 - Server is initializing...
-2025-04-07 14:52:13 - User type is: basic
-2025-04-07 14:54:47 - Server is initializing...
-2025-04-07 14:54:48 - User type is: basic
-2025-04-07 14:58:09 - Server is initializing...
-2025-04-07 14:58:10 - User type is: basic
-2025-04-07 14:59:08 - Server is initializing...
-2025-04-07 14:59:08 - User type is: basic
-2025-04-07 15:00:48 - Server is initializing...
-2025-04-07 15:00:48 - User type is: basic
-2025-04-07 15:04:48 - Server is initializing...
-2025-04-07 15:04:49 - User type is: basic
-2025-04-07 15:05:25 - Server is initializing...
-2025-04-07 15:05:26 - User type is: basic
-2025-04-07 15:06:02 - Server is initializing...
-2025-04-07 15:06:03 - User type is: basic
-2025-04-07 15:06:37 - Server is initializing...
-2025-04-07 15:06:38 - User type is: basic
-2025-04-07 15:07:37 - Server is initializing...
-2025-04-07 15:07:37 - User type is: basic
-2025-04-07 15:10:08 - Server is initializing...
-2025-04-07 15:10:08 - User type is: basic
-2025-04-07 15:10:42 - Server is initializing...
-2025-04-07 15:10:42 - User type is: basic
-2025-04-07 15:11:05 - Server is initializing...
-2025-04-07 15:11:06 - User type is: basic
-2025-04-07 15:12:16 - Server is initializing...
-2025-04-07 15:12:17 - User type is: basic
-2025-04-07 15:12:47 - Server is initializing...
-2025-04-07 15:12:48 - User type is: basic
-2025-04-07 15:14:40 - Server is initializing...
-2025-04-07 15:14:40 - User type is: basic
-2025-04-07 15:14:56 - Server is initializing...
-2025-04-07 15:14:56 - User type is: basic
-2025-04-07 15:17:59 - Server is initializing...
-2025-04-07 15:18:00 - User type is: basic
-2025-04-07 15:18:48 - Server is initializing...
-2025-04-07 15:18:49 - User type is: basic
-2025-04-07 15:20:47 - Server is initializing...
-2025-04-07 15:20:48 - User type is: basic
-2025-04-07 15:22:32 - Server is initializing...
-2025-04-07 15:22:33 - User type is: basic
-2025-04-07 15:22:55 - Server is initializing...
-2025-04-07 15:22:56 - User type is: basic
-2025-04-07 15:25:37 - Server is initializing...
-2025-04-07 15:25:37 - Server is initializing...
-2025-04-07 15:25:37 - Server is initializing...
-2025-04-07 15:25:37 - Server is initializing...
-2025-04-07 15:25:37 - Server is initializing...
-2025-04-07 15:25:37 - Server is initializing...
-2025-04-07 15:25:37 - Server is initializing...
-2025-04-07 15:25:37 - Server is initializing...
-2025-04-07 15:25:38 - Server is initializing...
-2025-04-07 15:25:39 - User type is: basic
-2025-04-07 19:20:06 - Server is initializing...
-2025-04-07 19:20:06 - Server is initializing...
-2025-04-07 19:20:06 - Server is initializing...
-2025-04-07 19:20:06 - Server is initializing...
-2025-04-07 19:20:06 - Server is initializing...
-2025-04-07 19:20:06 - Server is initializing...
-2025-04-07 19:20:06 - Server is initializing...
-2025-04-07 19:20:06 - Server is initializing...
-2025-04-07 19:20:06 - Server is initializing...
-2025-04-07 19:20:08 - User type is: basic
-2025-04-07 19:20:13 - Server is initializing...
-2025-04-07 19:20:14 - User type is: basic
-2025-04-07 19:20:21 - Server is initializing...
-2025-04-07 19:20:21 - Server is initializing...
-2025-04-07 19:20:21 - Server is initializing...
-2025-04-07 19:20:21 - Server is initializing...
-2025-04-07 19:20:21 - Server is initializing...
-2025-04-07 19:20:21 - Server is initializing...
-2025-04-07 19:20:21 - Server is initializing...
-2025-04-07 19:20:21 - Server is initializing...
-2025-04-07 19:20:21 - Server is initializing...
-2025-04-07 19:20:22 - User type is: basic
-2025-04-07 19:24:03 - Server is initializing...
-2025-04-07 19:26:42 - Server is initializing...
-2025-04-07 19:30:49 - Server is initializing...
-2025-04-07 19:33:21 - Server is initializing...
-2025-04-07 19:35:32 - Server is initializing...
-2025-04-07 19:36:46 - Server is initializing...
-2025-04-07 19:37:43 - Server is initializing...
-2025-04-07 19:38:09 - Server is initializing...
-2025-04-07 19:39:36 - Server is initializing...
-2025-04-07 19:39:35 - Server is initializing...
-2025-04-07 19:39:35 - Server is initializing...
-2025-04-07 19:39:36 - Server is initializing...
-2025-04-07 19:39:36 - Server is initializing...
-2025-04-07 19:39:36 - Server is initializing...
-2025-04-07 19:39:36 - Server is initializing...
-2025-04-07 19:39:36 - Server is initializing...
-2025-04-07 19:39:36 - Server is initializing...
-2025-04-07 19:39:36 - Server is initializing...
-2025-04-07 19:39:37 - User type is: basic
-2025-04-07 19:40:35 - Server is initializing...
-2025-04-07 19:44:40 - Server is initializing...
-2025-04-07 19:45:29 - Server is initializing...
-2025-04-07 19:46:18 - Server is initializing...
-2025-04-07 19:47:14 - Server is initializing...
-2025-04-07 19:47:15 - TEST RESPONSE: {
- "error": "Internal server error."
-}
-2025-04-07 19:48:07 - Server is initializing...
-2025-04-07 19:48:08 - Status: 500
-2025-04-07 19:48:08 - Error response: [object Object]
-2025-04-07 19:48:55 - Server is initializing...
-2025-04-07 19:49:27 - Server is initializing...
-2025-04-07 19:49:28 - Status: 500
-2025-04-07 19:49:28 - Error response: [object Object]
-2025-04-07 19:51:51 - Server is initializing...
-2025-04-07 19:51:52 - Status: 500
-2025-04-07 19:51:52 - Error response: [object Object]
-2025-04-07 19:52:10 - Server is initializing...
-2025-04-07 19:52:11 - Status: 500
-2025-04-07 19:52:11 - Error response: [object Object]
-2025-04-07 19:52:36 - Server is initializing...
-2025-04-07 19:53:30 - Server is initializing...
-2025-04-07 19:53:31 - Status: 500
-2025-04-07 19:53:31 - Error response: [object Object]
-2025-04-07 19:53:44 - Server is initializing...
-2025-04-07 19:53:45 - Status: 500
-2025-04-07 19:53:45 - Error response: [object Object]
-2025-04-07 19:55:07 - Server is initializing...
-2025-04-07 19:57:49 - Server is initializing...
-2025-04-07 19:58:13 - Server is initializing...
-2025-04-07 19:58:14 - Status: 500
-2025-04-07 19:58:14 - Error response: [object Object]
-2025-04-07 19:58:49 - Server is initializing...
-2025-04-07 19:58:49 - Server is initializing...
-2025-04-07 19:58:49 - Server is initializing...
-2025-04-07 19:58:49 - Server is initializing...
-2025-04-07 19:58:49 - Server is initializing...
-2025-04-07 19:58:49 - Server is initializing...
-2025-04-07 19:58:49 - Server is initializing...
-2025-04-07 19:58:49 - Server is initializing...
-2025-04-07 19:58:49 - Server is initializing...
-2025-04-07 19:58:49 - Server is initializing...
-2025-04-07 19:58:50 - User type is: basic
-2025-04-07 19:58:50 - Status: 500
-2025-04-07 19:58:50 - Error response: [object Object]
-2025-04-07 20:00:31 - Server is initializing...
-2025-04-07 20:02:22 - Server is initializing...
-2025-04-07 20:03:42 - Server is initializing...
-2025-04-07 20:06:26 - Server is initializing...
-2025-04-07 20:07:57 - Server is initializing...
-2025-04-07 20:09:50 - Server is initializing...
-2025-04-07 20:11:16 - Server is initializing...
-2025-04-07 20:11:48 - Server is initializing...
-2025-04-07 20:12:26 - Server is initializing...
-2025-04-07 20:14:04 - Server is initializing...
-2025-04-07 20:14:31 - Server is initializing...
-2025-04-07 20:15:33 - Server is initializing...
-2025-04-07 20:16:05 - Server is initializing...
-2025-04-07 20:17:08 - Server is initializing...
-2025-04-07 20:18:08 - Server is initializing...
-2025-04-07 20:19:05 - Server is initializing...
-2025-04-07 20:19:30 - Server is initializing...
-2025-04-07 20:20:34 - Server is initializing...
-2025-04-07 20:22:09 - Server is initializing...
-2025-04-07 20:23:55 - Server is initializing...
-2025-04-07 20:26:11 - Server is initializing...
-2025-04-07 20:26:50 - Server is initializing...
-2025-04-07 20:27:27 - Server is initializing...
-2025-04-07 20:27:54 - Server is initializing...
-2025-04-07 20:29:39 - Server is initializing...
-2025-04-07 20:30:58 - Server is initializing...
-2025-04-07 20:34:12 - Server is initializing...
-2025-04-07 20:35:06 - Server is initializing...
-2025-04-07 20:36:52 - Server is initializing...
-2025-04-07 20:37:39 - Server is initializing...
-2025-04-07 20:38:29 - Server is initializing...
-2025-04-07 20:39:04 - Server is initializing...
-2025-04-07 20:41:50 - Server is initializing...
-2025-04-07 20:41:50 - Server is initializing...
-2025-04-07 20:41:50 - Server is initializing...
-2025-04-07 20:41:50 - Server is initializing...
-2025-04-07 20:41:50 - Server is initializing...
-2025-04-07 20:41:50 - Server is initializing...
-2025-04-07 20:41:50 - Server is initializing...
-2025-04-07 20:41:50 - Server is initializing...
-2025-04-07 20:41:50 - Server is initializing...
-2025-04-07 20:41:50 - Server is initializing...
-2025-04-07 20:41:51 - User type is: basic
-2025-04-07 20:41:51 - Status: 500
-2025-04-07 20:41:51 - Error response: [object Object]
-2025-04-07 20:42:11 - Server is initializing...
-2025-04-07 20:42:56 - Server is initializing...
-2025-04-07 20:43:26 - Server is initializing...
-2025-04-07 20:43:40 - Server is initializing...
-2025-04-07 20:43:40 - Server is initializing...
-2025-04-07 20:43:40 - Server is initializing...
-2025-04-07 20:43:40 - Server is initializing...
-2025-04-07 20:43:40 - Server is initializing...
-2025-04-07 20:43:40 - Server is initializing...
-2025-04-07 20:43:40 - Server is initializing...
-2025-04-07 20:43:40 - Server is initializing...
-2025-04-07 20:43:40 - Server is initializing...
-2025-04-07 20:43:40 - Server is initializing...
-2025-04-07 20:43:41 - User type is: basic
-2025-04-07 20:43:41 - Status: 500
-2025-04-07 20:43:41 - Error response: [object Object]
-2025-04-07 20:46:03 - Server is initializing...
-2025-04-07 20:48:07 - Server is initializing...
-2025-04-07 20:48:07 - Server is initializing...
-2025-04-07 20:48:07 - Server is initializing...
-2025-04-07 20:48:07 - Server is initializing...
-2025-04-07 20:48:07 - Server is initializing...
-2025-04-07 20:48:07 - Server is initializing...
-2025-04-07 20:48:07 - Server is initializing...
-2025-04-07 20:48:07 - Server is initializing...
-2025-04-07 20:48:07 - Server is initializing...
-2025-04-07 20:48:07 - Server is initializing...
-2025-04-07 20:48:09 - User type is: basic
-2025-04-07 20:48:09 - Status: 500
-2025-04-07 20:48:09 - Error response: [object Object]
-2025-04-08 07:00:19 - Server is initializing...
-2025-04-08 07:00:19 - Server is initializing...
-2025-04-08 07:00:19 - Server is initializing...
-2025-04-08 07:00:19 - Server is initializing...
-2025-04-08 07:00:19 - Server is initializing...
-2025-04-08 07:00:19 - Server is initializing...
-2025-04-08 07:00:19 - Server is initializing...
-2025-04-08 07:00:19 - Server is initializing...
-2025-04-08 07:00:19 - Server is initializing...
-2025-04-08 07:00:19 - Server is initializing...
-2025-04-08 07:00:21 - User type is: basic
-2025-04-08 07:00:21 - Status: 500
-2025-04-08 07:00:21 - Error response: [object Object]
-2025-04-08 07:05:03 - Server is initializing...
-2025-04-08 07:16:20 - Server is initializing...
-2025-04-08 07:16:20 - Server is initializing...
-2025-04-08 07:16:20 - Server is initializing...
-2025-04-08 07:16:20 - Server is initializing...
-2025-04-08 07:16:20 - Server is initializing...
-2025-04-08 07:16:20 - Server is initializing...
-2025-04-08 07:16:20 - Server is initializing...
-2025-04-08 07:16:20 - Server is initializing...
-2025-04-08 07:16:20 - Server is initializing...
-2025-04-08 07:16:21 - User type is: basic
-2025-04-08 07:16:22 - Status: 500
-2025-04-08 07:16:22 - Error response: [object Object]
-2025-04-08 07:16:56 - Server is initializing...
-2025-04-08 07:22:14 - Server is initializing...
-2025-04-08 07:23:23 - Server is initializing...
-2025-04-08 07:25:09 - Server is initializing...
-2025-04-08 07:26:00 - Server is initializing...
-2025-04-08 07:28:19 - Server is initializing...
-2025-04-08 07:29:16 - Server is initializing...
-2025-04-08 07:29:16 - Server is initializing...
-2025-04-08 07:29:16 - Server is initializing...
-2025-04-08 07:29:16 - Server is initializing...
-2025-04-08 07:29:16 - Server is initializing...
-2025-04-08 07:29:16 - Server is initializing...
-2025-04-08 07:29:16 - Server is initializing...
-2025-04-08 07:29:16 - Server is initializing...
-2025-04-08 07:29:16 - Server is initializing...
-2025-04-08 07:29:17 - User type is: basic
-2025-04-08 07:29:17 - Status: 500
-2025-04-08 07:29:17 - Error response: [object Object]
-2025-04-08 07:32:41 - Server is initializing...
-2025-04-08 07:32:41 - Sending email to: john.doe@example.com...
-2025-04-08 07:32:41 - Sending email to: john.doe@example.com...
-2025-04-08 07:32:41 - Sending email to: john.doe@example.com...
-2025-04-08 07:32:41 - Storing data for john.doe@example.com in database...
-2025-04-08 07:32:41 - Storing data for john.doe@example.com in database...
-2025-04-08 07:32:41 - Storing data for john.doe@example.com in database...
-2025-04-08 07:32:41 - Data stored successfully
-2025-04-08 07:33:38 - Server is initializing...
-2025-04-08 07:33:38 - Storing data for john.doe@example.com in database...
-2025-04-08 07:33:38 - Storing data for john.doe@example.com in database...
-2025-04-08 07:33:38 - Storing data for john.doe@example.com in database...
-2025-04-08 07:33:38 - Data stored successfully
-2025-04-08 07:36:32 - Server is initializing...
-2025-04-08 07:36:33 - Sending email to: john.doe@example.com...
-2025-04-08 07:36:33 - Sending email to: john.doe@example.com...
-2025-04-08 07:36:33 - Sending email to: john.doe@example.com...
-2025-04-08 07:36:33 - Storing data for john.doe@example.com in database...
-2025-04-08 07:36:33 - Storing data for john.doe@example.com in database...
-2025-04-08 07:36:33 - Storing data for john.doe@example.com in database...
-2025-04-08 07:36:33 - Data stored successfully
-2025-04-08 07:37:32 - Server is initializing...
-2025-04-08 07:37:32 - Sending email to: john.doe@example.com...
-2025-04-08 07:37:32 - Email sent successfully
-2025-04-08 07:37:32 - Sending email to: john.doe@example.com...
-2025-04-08 07:37:32 - Failed to send email
-2025-04-08 07:37:32 - Sending email to: john.doe@example.com...
-2025-04-08 07:37:32 - Storing data for john.doe@example.com in database...
-2025-04-08 07:37:32 - Storing data for john.doe@example.com in database...
-2025-04-08 07:37:32 - Storing data for john.doe@example.com in database...
-2025-04-08 07:37:32 - Data stored successfully
-2025-04-08 07:37:43 - Server is initializing...
-2025-04-08 07:37:43 - Sending email to: john.doe@example.com...
-2025-04-08 07:37:43 - Email sent successfully
-2025-04-08 07:37:44 - Sending email to: john.doe@example.com...
-2025-04-08 07:37:44 - Failed to send email
-2025-04-08 07:37:44 - Sending email to: john.doe@example.com...
-2025-04-08 07:37:44 - Storing data for john.doe@example.com in database...
-2025-04-08 07:37:44 - Storing data for john.doe@example.com in database...
-2025-04-08 07:37:44 - Storing data for john.doe@example.com in database...
-2025-04-08 07:37:44 - Data stored successfully
-2025-04-08 07:39:05 - Server is initializing...
-2025-04-08 07:39:05 - Sending email to: john.doe@example.com...
-2025-04-08 07:39:05 - Email sent successfully
-2025-04-08 07:39:05 - Sending email to: john.doe@example.com...
-2025-04-08 07:39:05 - Failed to send email
-2025-04-08 07:39:05 - Sending email to: john.doe@example.com...
-2025-04-08 07:39:05 - Sending email to: john.doe+test@example.com...
-2025-04-08 07:39:05 - Email sent successfully
-2025-04-08 07:39:05 - Sending email to: invalid-email...
-2025-04-08 07:39:05 - Email sent successfully
-2025-04-08 07:39:05 - Storing data for john.doe@example.com in database...
-2025-04-08 07:39:05 - Storing data for john.doe@example.com in database...
-2025-04-08 07:39:05 - Storing data for john.doe@example.com in database...
-2025-04-08 07:39:05 - Data stored successfully
-2025-04-08 07:39:05 - Storing data for john.doe@example.com in database...
-2025-04-08 07:39:05 - Storing data for john.doe@example.com in database...
-2025-04-08 07:39:05 - Data stored successfully
-2025-04-08 07:39:05 - Storing data for john.doe@example.com in database...
-2025-04-08 07:39:05 - Data stored successfully
-2025-04-08 07:39:15 - Server is initializing...
-2025-04-08 07:39:15 - Sending email to: john.doe@example.com...
-2025-04-08 07:39:15 - Email sent successfully
-2025-04-08 07:39:15 - Sending email to: john.doe@example.com...
-2025-04-08 07:39:15 - Failed to send email
-2025-04-08 07:39:15 - Sending email to: john.doe@example.com...
-2025-04-08 07:39:15 - Sending email to: john.doe+test@example.com...
-2025-04-08 07:39:15 - Email sent successfully
-2025-04-08 07:39:15 - Sending email to: invalid-email...
-2025-04-08 07:39:15 - Email sent successfully
-2025-04-08 07:39:15 - Storing data for john.doe@example.com in database...
-2025-04-08 07:39:15 - Storing data for john.doe@example.com in database...
-2025-04-08 07:39:15 - Storing data for john.doe@example.com in database...
-2025-04-08 07:39:15 - Data stored successfully
-2025-04-08 07:39:48 - Server is initializing...
-2025-04-08 07:39:48 - Sending email to: john.doe@example.com...
-2025-04-08 07:39:48 - Email sent successfully
-2025-04-08 07:39:48 - Sending email to: john.doe@example.com...
-2025-04-08 07:39:48 - Failed to send email
-2025-04-08 07:39:48 - Sending email to: john.doe@example.com...
-2025-04-08 07:39:48 - Storing data for john.doe@example.com in database...
-2025-04-08 07:39:48 - Storing data for john.doe@example.com in database...
-2025-04-08 07:39:48 - Storing data for john.doe@example.com in database...
-2025-04-08 07:39:48 - Data stored successfully
-2025-04-08 07:40:19 - Server is initializing...
-2025-04-08 07:40:19 - Sending email to: john.doe@example.com...
-2025-04-08 07:40:19 - Email sent successfully
-2025-04-08 07:40:19 - Sending email to: john.doe@example.com...
-2025-04-08 07:40:19 - Failed to send email
-2025-04-08 07:40:19 - Sending email to: john.doe@example.com...
-2025-04-08 07:40:19 - Storing data for john.doe@example.com in database...
-2025-04-08 07:40:19 - Storing data for john.doe@example.com in database...
-2025-04-08 07:40:19 - Storing data for john.doe@example.com in database...
-2025-04-08 07:40:19 - Data stored successfully
-2025-04-08 07:40:19 - Storing data for john.doe@example.com in database...
-2025-04-08 07:40:19 - Storing data for john.doe@example.com in database...
-2025-04-08 07:40:19 - Data stored successfully
-2025-04-08 07:40:19 - Storing data for john.doe@example.com in database...
-2025-04-08 07:40:19 - Data stored successfully
-2025-04-08 07:42:15 - Server is initializing...
-2025-04-08 07:42:15 - Server is initializing...
-2025-04-08 07:42:15 - Server is initializing...
-2025-04-08 07:42:15 - Server is initializing...
-2025-04-08 07:42:15 - Server is initializing...
-2025-04-08 07:42:15 - Server is initializing...
-2025-04-08 07:42:15 - Server is initializing...
-2025-04-08 07:42:16 - Sending email to: john.doe@example.com...
-2025-04-08 07:42:16 - Email sent successfully
-2025-04-08 07:42:16 - Sending email to: john.doe@example.com...
-2025-04-08 07:42:16 - Failed to send email
-2025-04-08 07:42:16 - Sending email to: john.doe@example.com...
-2025-04-08 07:42:15 - Server is initializing...
-2025-04-08 07:42:16 - Storing data for john.doe@example.com in database...
-2025-04-08 07:42:15 - Server is initializing...
-2025-04-08 07:42:16 - Storing data for john.doe@example.com in database...
-2025-04-08 07:42:15 - Server is initializing...
-2025-04-08 07:42:16 - Storing data for john.doe@example.com in database...
-2025-04-08 07:42:16 - Data stored successfully
-2025-04-08 07:42:16 - Storing data for john.doe@example.com in database...
-2025-04-08 07:42:16 - Storing data for john.doe@example.com in database...
-2025-04-08 07:42:16 - Data stored successfully
-2025-04-08 07:42:16 - Storing data for john.doe@example.com in database...
-2025-04-08 07:42:16 - Data stored successfully
-2025-04-08 07:42:16 - User type is: basic
-2025-04-08 07:42:16 - Status: 500
-2025-04-08 07:42:16 - Error response: [object Object]
-2025-04-08 07:43:02 - Server is initializing...
-2025-04-08 07:47:39 - Server is initializing...
-2025-04-08 07:47:54 - Server is initializing...
-2025-04-08 07:50:05 - Server is initializing...
-2025-04-08 07:51:07 - Server is initializing...
-2025-04-08 07:52:31 - Server is initializing...
-2025-04-08 07:52:31 - Server is initializing...
-2025-04-08 07:52:31 - Server is initializing...
-2025-04-08 07:52:31 - Server is initializing...
-2025-04-08 07:52:31 - Server is initializing...
-2025-04-08 07:52:31 - Server is initializing...
-2025-04-08 07:52:31 - Server is initializing...
-2025-04-08 07:52:31 - Server is initializing...
-2025-04-08 07:52:31 - Server is initializing...
-2025-04-08 07:52:32 - Sending email to: john.doe@example.com...
-2025-04-08 07:52:32 - Email sent successfully
-2025-04-08 07:52:32 - Sending email to: john.doe@example.com...
-2025-04-08 07:52:32 - Failed to send email
-2025-04-08 07:52:32 - Sending email to: john.doe@example.com...
-2025-04-08 07:52:31 - Server is initializing...
-2025-04-08 07:52:32 - Storing data for john.doe@example.com in database...
-2025-04-08 07:52:32 - Storing data for john.doe@example.com in database...
-2025-04-08 07:52:32 - Storing data for john.doe@example.com in database...
-2025-04-08 07:52:32 - Data stored successfully
-2025-04-08 07:52:32 - Storing data for john.doe@example.com in database...
-2025-04-08 07:52:32 - Storing data for john.doe@example.com in database...
-2025-04-08 07:52:32 - Data stored successfully
-2025-04-08 07:52:32 - Storing data for john.doe@example.com in database...
-2025-04-08 07:52:32 - Data stored successfully
-2025-04-08 07:52:32 - User type is: basic
-2025-04-08 07:52:33 - Status: 500
-2025-04-08 07:52:33 - Error response: [object Object]
-2025-04-08 07:53:27 - Server is initializing...
-2025-04-08 07:54:31 - Server is initializing...
-2025-04-08 07:54:55 - Server is initializing...
-2025-04-08 08:01:45 - Server is initializing...
-2025-04-08 08:01:58 - Server is initializing...
-2025-04-08 08:02:31 - Server is initializing...
-2025-04-08 08:04:40 - Server is initializing...
-2025-04-08 08:07:59 - Server is initializing...
-2025-04-08 08:08:39 - Server is initializing...
-2025-04-08 08:09:09 - Server is initializing...
-2025-04-08 08:09:14 - Server is initializing...
-2025-04-08 08:09:14 - Server is initializing...
-2025-04-08 08:09:14 - Server is initializing...
-2025-04-08 08:09:14 - Server is initializing...
-2025-04-08 08:09:14 - Server is initializing...
-2025-04-08 08:09:14 - Server is initializing...
-2025-04-08 08:09:14 - Server is initializing...
-2025-04-08 08:09:14 - Sending email to: john.doe@example.com...
-2025-04-08 08:09:14 - Email sent successfully
-2025-04-08 08:09:14 - Sending email to: john.doe@example.com...
-2025-04-08 08:09:14 - Failed to send email
-2025-04-08 08:09:14 - Sending email to: john.doe@example.com...
-2025-04-08 08:09:14 - Storing data for john.doe@example.com in database...
-2025-04-08 08:09:14 - Server is initializing...
-2025-04-08 08:09:14 - Storing data for john.doe@example.com in database...
-2025-04-08 08:09:14 - Storing data for john.doe@example.com in database...
-2025-04-08 08:09:14 - Data stored successfully
-2025-04-08 08:09:14 - Storing data for john.doe@example.com in database...
-2025-04-08 08:09:14 - Server is initializing...
-2025-04-08 08:09:14 - Server is initializing...
-2025-04-08 08:09:14 - Storing data for john.doe@example.com in database...
-2025-04-08 08:09:14 - Data stored successfully
-2025-04-08 08:09:14 - Storing data for john.doe@example.com in database...
-2025-04-08 08:09:14 - Data stored successfully
-2025-04-08 08:09:15 - User type is: basic
-2025-04-08 08:09:15 - Status: 500
-2025-04-08 08:09:15 - Error response: [object Object]
-2025-04-08 08:12:51 - Server is initializing...
-2025-04-08 08:20:01 - Server is initializing...
-2025-04-08 08:21:11 - Server is initializing...
-2025-04-08 08:22:24 - Server is initializing...
-2025-04-08 08:24:33 - Server is initializing...
-2025-04-08 08:26:18 - Server is initializing...
-2025-04-08 08:28:03 - Server is initializing...
-2025-04-08 08:29:04 - Server is initializing...
-2025-04-08 08:32:04 - Server is initializing...
-2025-04-08 08:32:23 - Server is initializing...
-2025-04-08 08:33:55 - Server is initializing...
-2025-04-08 08:34:57 - Server is initializing...
-2025-04-08 08:37:07 - Server is initializing...
-2025-04-08 08:37:21 - Server is initializing...
-2025-04-08 08:38:06 - Server is initializing...
-2025-04-08 08:40:46 - Server is initializing...
-2025-04-08 08:41:06 - Server is initializing...
-2025-04-08 08:42:24 - Server is initializing...
-2025-04-08 08:43:00 - Server is initializing...
-2025-04-08 08:43:26 - Server is initializing...
-2025-04-08 08:43:45 - Server is initializing...
-2025-04-08 08:45:00 - Server is initializing...
-2025-04-08 08:45:00 - Server is initializing...
-2025-04-08 08:45:00 - Server is initializing...
-2025-04-08 08:45:00 - Server is initializing...
-2025-04-08 08:45:00 - Server is initializing...
-2025-04-08 08:45:00 - Server is initializing...
-2025-04-08 08:45:00 - Server is initializing...
-2025-04-08 08:45:00 - Server is initializing...
-2025-04-08 08:45:00 - Sending email to: john.doe@example.com...
-2025-04-08 08:45:00 - Email sent successfully
-2025-04-08 08:45:00 - Sending email to: john.doe@example.com...
-2025-04-08 08:45:00 - Failed to send email
-2025-04-08 08:45:00 - Sending email to: john.doe@example.com...
-2025-04-08 08:45:00 - Storing data for john.doe@example.com in database...
-2025-04-08 08:45:00 - Storing data for john.doe@example.com in database...
-2025-04-08 08:45:00 - Storing data for john.doe@example.com in database...
-2025-04-08 08:45:00 - Data stored successfully
-2025-04-08 08:45:00 - Storing data for john.doe@example.com in database...
-2025-04-08 08:45:00 - Storing data for john.doe@example.com in database...
-2025-04-08 08:45:00 - Data stored successfully
-2025-04-08 08:45:00 - Storing data for john.doe@example.com in database...
-2025-04-08 08:45:00 - Data stored successfully
-2025-04-08 08:45:00 - Server is initializing...
-2025-04-08 08:45:00 - Server is initializing...
-2025-04-08 08:45:01 - User type is: basic
-2025-04-08 08:45:01 - Status: 500
-2025-04-08 08:45:01 - Error response: [object Object]
-2025-04-08 08:46:38 - Server is initializing...
-2025-04-08 08:46:51 - Server is initializing...
-2025-04-08 08:47:20 - Server is initializing...
-2025-04-08 08:47:52 - Server is initializing...
-2025-04-08 08:50:05 - Server is initializing...
-2025-04-08 08:51:31 - Server is initializing...
-2025-04-08 08:54:45 - Server is initializing...
-2025-04-08 08:54:54 - Server is initializing...
-2025-04-08 08:55:17 - Server is initializing...
-2025-04-08 08:55:46 - Server is initializing...
-2025-04-08 08:57:19 - Server is initializing...
-2025-04-08 08:58:40 - Server is initializing...
-2025-04-08 08:58:41 - Response status: 200
-2025-04-08 08:58:41 - Response body: [object Object]
-2025-04-08 08:59:14 - Server is initializing...
-2025-04-08 09:00:02 - Server is initializing...
-2025-04-08 09:00:35 - Server is initializing...
-2025-04-08 09:00:50 - Server is initializing...
-2025-04-08 09:01:16 - Server is initializing...
-2025-04-08 09:02:54 - Server is initializing...
-2025-04-08 09:03:56 - Server is initializing...
-2025-04-08 09:04:36 - Server is initializing...
-2025-04-08 09:05:05 - Server is initializing...
-2025-04-08 09:06:33 - Server is initializing...
-2025-04-08 09:11:19 - Server is initializing...
-2025-04-08 09:12:41 - Server is initializing...
-2025-04-08 09:13:05 - Server is initializing...
-2025-04-08 09:34:38 - Server is initializing...
-2025-04-08 09:34:50 - Server is initializing...
-2025-04-08 09:35:22 - Server is initializing...
-2025-04-08 09:35:31 - Server is initializing...
-2025-04-08 09:35:43 - Server is initializing...
-2025-04-08 09:36:12 - Server is initializing...
-2025-04-08 09:41:52 - Server is initializing...
-2025-04-08 09:45:34 - Server is initializing...
-2025-04-08 09:46:05 - Server is initializing...
-2025-04-08 09:46:44 - Server is initializing...
-2025-04-08 09:46:44 - Server is initializing...
-2025-04-08 09:46:44 - Server is initializing...
-2025-04-08 09:46:44 - Server is initializing...
-2025-04-08 09:46:44 - Server is initializing...
-2025-04-08 09:46:44 - Server is initializing...
-2025-04-08 09:46:44 - Server is initializing...
-2025-04-08 09:46:44 - Sending email to: john.doe@example.com...
-2025-04-08 09:46:44 - Server is initializing...
-2025-04-08 09:46:44 - Email sent successfully
-2025-04-08 09:46:44 - Server is initializing...
-2025-04-08 09:46:44 - Sending email to: john.doe@example.com...
-2025-04-08 09:46:44 - Failed to send email
-2025-04-08 09:46:44 - Sending email to: john.doe@example.com...
-2025-04-08 09:46:44 - Server is initializing...
-2025-04-08 09:46:44 - Storing data for john.doe@example.com in database...
-2025-04-08 09:46:44 - Storing data for john.doe@example.com in database...
-2025-04-08 09:46:44 - Storing data for john.doe@example.com in database...
-2025-04-08 09:46:44 - Data stored successfully
-2025-04-08 09:46:44 - Storing data for john.doe@example.com in database...
-2025-04-08 09:46:44 - Storing data for john.doe@example.com in database...
-2025-04-08 09:46:44 - Data stored successfully
-2025-04-08 09:46:44 - Storing data for john.doe@example.com in database...
-2025-04-08 09:46:44 - Data stored successfully
-2025-04-08 09:46:45 - User type is: basic
-2025-04-08 09:46:45 - Status: 500
-2025-04-08 09:46:45 - Error response: [object Object]
-2025-04-08 10:19:01 - Server is initializing...
-2025-04-08 10:22:26 - Server is initializing...
-2025-04-08 10:22:27 - Status: 500
-2025-04-08 10:22:27 - Error response: [object Object]
-2025-04-08 10:23:03 - Server is initializing...
-2025-04-08 10:23:13 - Server is initializing...
-2025-04-08 10:23:33 - Server is initializing...
-2025-04-08 10:23:48 - Server is initializing...
-2025-04-08 10:23:59 - Server is initializing...
-2025-04-08 10:24:13 - Server is initializing...
-2025-04-08 10:24:13 - Server is initializing...
-2025-04-08 10:24:13 - Server is initializing...
-2025-04-08 10:24:13 - Server is initializing...
-2025-04-08 10:24:13 - Server is initializing...
-2025-04-08 10:24:13 - Server is initializing...
-2025-04-08 10:24:13 - Server is initializing...
-2025-04-08 10:24:13 - Server is initializing...
-2025-04-08 10:24:13 - Server is initializing...
-2025-04-08 10:24:13 - Server is initializing...
-2025-04-08 10:24:14 - Sending email to: john.doe@example.com...
-2025-04-08 10:24:14 - Email sent successfully
-2025-04-08 10:24:14 - Sending email to: john.doe@example.com...
-2025-04-08 10:24:14 - Failed to send email
-2025-04-08 10:24:14 - Sending email to: john.doe@example.com...
-2025-04-08 10:24:14 - Storing data for john.doe@example.com in database...
-2025-04-08 10:24:14 - Storing data for john.doe@example.com in database...
-2025-04-08 10:24:14 - Storing data for john.doe@example.com in database...
-2025-04-08 10:24:14 - Data stored successfully
-2025-04-08 10:24:14 - Storing data for john.doe@example.com in database...
-2025-04-08 10:24:14 - Storing data for john.doe@example.com in database...
-2025-04-08 10:24:14 - Data stored successfully
-2025-04-08 10:24:14 - Storing data for john.doe@example.com in database...
-2025-04-08 10:24:14 - Data stored successfully
-2025-04-08 10:24:14 - User type is: basic
-2025-04-08 10:24:15 - Status: 500
-2025-04-08 10:24:15 - Error response: [object Object]
-2025-04-08 10:25:52 - Server is initializing...
-2025-04-08 10:25:52 - Server is initializing...
-2025-04-08 10:25:52 - Server is initializing...
-2025-04-08 10:25:52 - Server is initializing...
-2025-04-08 10:25:52 - Server is initializing...
-2025-04-08 10:25:52 - Server is initializing...
-2025-04-08 10:25:52 - Server is initializing...
-2025-04-08 10:25:52 - Server is initializing...
-2025-04-08 10:25:52 - Server is initializing...
-2025-04-08 10:25:52 - Sending email to: john.doe@example.com...
-2025-04-08 10:25:52 - Email sent successfully
-2025-04-08 10:25:52 - Sending email to: john.doe@example.com...
-2025-04-08 10:25:52 - Failed to send email
-2025-04-08 10:25:52 - Sending email to: john.doe@example.com...
-2025-04-08 10:25:52 - Server is initializing...
-2025-04-08 10:25:52 - Storing data for john.doe@example.com in database...
-2025-04-08 10:25:52 - Storing data for john.doe@example.com in database...
-2025-04-08 10:25:52 - Storing data for john.doe@example.com in database...
-2025-04-08 10:25:52 - Data stored successfully
-2025-04-08 10:25:52 - Storing data for john.doe@example.com in database...
-2025-04-08 10:25:52 - Storing data for john.doe@example.com in database...
-2025-04-08 10:25:52 - Data stored successfully
-2025-04-08 10:25:52 - Storing data for john.doe@example.com in database...
-2025-04-08 10:25:52 - Data stored successfully
-2025-04-08 10:25:53 - User type is: basic
-2025-04-08 10:25:53 - Status: 500
-2025-04-08 10:25:53 - Error response: [object Object]
-2025-04-08 12:01:56 - Server is initializing...
-2025-04-08 12:03:12 - Server is initializing...
-2025-04-08 12:06:56 - Server is initializing...
-2025-04-08 12:08:48 - Server is initializing...
-2025-04-08 12:09:03 - Server is initializing...
-2025-04-08 12:09:03 - Server is initializing...
-2025-04-08 12:09:02 - Server is initializing...
-2025-04-08 12:09:03 - Server is initializing...
-2025-04-08 12:09:03 - Server is initializing...
-2025-04-08 12:09:03 - Server is initializing...
-2025-04-08 12:09:03 - Server is initializing...
-2025-04-08 12:09:03 - Server is initializing...
-2025-04-08 12:09:03 - Sending email to: john.doe@example.com...
-2025-04-08 12:09:03 - Email sent successfully
-2025-04-08 12:09:03 - Sending email to: john.doe@example.com...
-2025-04-08 12:09:03 - Failed to send email
-2025-04-08 12:09:03 - Sending email to: john.doe@example.com...
-2025-04-08 12:09:03 - Server is initializing...
-2025-04-08 12:09:03 - Storing data for john.doe@example.com in database...
-2025-04-08 12:09:03 - Server is initializing...
-2025-04-08 12:09:03 - Storing data for john.doe@example.com in database...
-2025-04-08 12:09:03 - Storing data for john.doe@example.com in database...
-2025-04-08 12:09:03 - Data stored successfully
-2025-04-08 12:09:03 - Storing data for john.doe@example.com in database...
-2025-04-08 12:09:03 - Storing data for john.doe@example.com in database...
-2025-04-08 12:09:03 - Data stored successfully
-2025-04-08 12:09:03 - Storing data for john.doe@example.com in database...
-2025-04-08 12:09:03 - Data stored successfully
-2025-04-08 12:09:04 - User type is: basic
-2025-04-08 12:09:04 - Status: 500
-2025-04-08 12:09:04 - Error response: [object Object]
-2025-04-08 12:13:57 - Server is initializing...
-2025-04-08 12:16:02 - Server is initializing...
-2025-04-08 12:17:07 - Server is initializing...
-2025-04-08 12:18:47 - Server is initializing...
-2025-04-08 12:18:58 - Server is initializing...
-2025-04-08 12:18:58 - Server is initializing...
-2025-04-08 12:18:58 - Server is initializing...
-2025-04-08 12:18:58 - Server is initializing...
-2025-04-08 12:18:58 - Server is initializing...
-2025-04-08 12:18:58 - Server is initializing...
-2025-04-08 12:18:58 - Server is initializing...
-2025-04-08 12:18:58 - Server is initializing...
-2025-04-08 12:18:58 - Server is initializing...
-2025-04-08 12:18:58 - Server is initializing...
-2025-04-08 12:18:58 - Server is initializing...
-2025-04-08 12:18:58 - Sending email to: john.doe@example.com...
-2025-04-08 12:18:58 - Email sent successfully
-2025-04-08 12:18:58 - Sending email to: john.doe@example.com...
-2025-04-08 12:18:58 - Failed to send email
-2025-04-08 12:18:58 - Sending email to: john.doe@example.com...
-2025-04-08 12:18:58 - Storing data for john.doe@example.com in database...
-2025-04-08 12:18:58 - Storing data for john.doe@example.com in database...
-2025-04-08 12:18:58 - Storing data for john.doe@example.com in database...
-2025-04-08 12:18:58 - Data stored successfully
-2025-04-08 12:18:58 - Storing data for john.doe@example.com in database...
-2025-04-08 12:18:58 - Storing data for john.doe@example.com in database...
-2025-04-08 12:18:58 - Data stored successfully
-2025-04-08 12:18:58 - Storing data for john.doe@example.com in database...
-2025-04-08 12:18:58 - Data stored successfully
-2025-04-08 12:18:59 - User type is: basic
-2025-04-08 12:18:59 - Status: 500
-2025-04-08 12:18:59 - Error response: [object Object]
-2025-04-08 12:19:08 - Server is initializing...
-2025-04-08 12:20:08 - Server is initializing...
-2025-04-08 12:20:21 - Server is initializing...
-2025-04-08 12:20:57 - Server is initializing...
-2025-04-08 12:20:57 - Server is initializing...
-2025-04-08 12:20:57 - Server is initializing...
-2025-04-08 12:20:57 - Server is initializing...
-2025-04-08 12:20:57 - Server is initializing...
-2025-04-08 12:20:57 - Server is initializing...
-2025-04-08 12:20:57 - Server is initializing...
-2025-04-08 12:20:57 - Server is initializing...
-2025-04-08 12:20:57 - Server is initializing...
-2025-04-08 12:20:57 - Server is initializing...
-2025-04-08 12:20:57 - Server is initializing...
-2025-04-08 12:20:57 - Sending email to: john.doe@example.com...
-2025-04-08 12:20:57 - Email sent successfully
-2025-04-08 12:20:57 - Sending email to: john.doe@example.com...
-2025-04-08 12:20:57 - Failed to send email
-2025-04-08 12:20:57 - Sending email to: john.doe@example.com...
-2025-04-08 12:20:57 - Storing data for john.doe@example.com in database...
-2025-04-08 12:20:57 - Storing data for john.doe@example.com in database...
-2025-04-08 12:20:57 - Storing data for john.doe@example.com in database...
-2025-04-08 12:20:57 - Data stored successfully
-2025-04-08 12:20:57 - Storing data for john.doe@example.com in database...
-2025-04-08 12:20:57 - Storing data for john.doe@example.com in database...
-2025-04-08 12:20:57 - Data stored successfully
-2025-04-08 12:20:57 - Storing data for john.doe@example.com in database...
-2025-04-08 12:20:57 - Data stored successfully
-2025-04-08 12:20:58 - User type is: basic
-2025-04-08 12:20:58 - Status: 500
-2025-04-08 12:20:58 - Error response: [object Object]
-2025-04-08 12:27:31 - Server is initializing...
-2025-04-08 12:35:46 - Server is initializing...
-2025-04-08 12:37:32 - Server is initializing...
-2025-04-08 12:37:32 - Server is initializing...
-2025-04-08 12:37:32 - Server is initializing...
-2025-04-08 12:37:32 - Server is initializing...
-2025-04-08 12:37:32 - Server is initializing...
-2025-04-08 12:37:32 - Server is initializing...
-2025-04-08 12:37:32 - Server is initializing...
-2025-04-08 12:37:32 - Server is initializing...
-2025-04-08 12:37:32 - Server is initializing...
-2025-04-08 12:37:32 - Server is initializing...
-2025-04-08 12:37:32 - Sending email to: john.doe@example.com...
-2025-04-08 12:37:32 - Email sent successfully
-2025-04-08 12:37:32 - Sending email to: john.doe@example.com...
-2025-04-08 12:37:32 - Failed to send email
-2025-04-08 12:37:32 - Sending email to: john.doe@example.com...
-2025-04-08 12:37:32 - Storing data for john.doe@example.com in database...
-2025-04-08 12:37:32 - Server is initializing...
-2025-04-08 12:37:32 - Storing data for john.doe@example.com in database...
-2025-04-08 12:37:32 - Storing data for john.doe@example.com in database...
-2025-04-08 12:37:32 - Data stored successfully
-2025-04-08 12:37:32 - Storing data for john.doe@example.com in database...
-2025-04-08 12:37:32 - Storing data for john.doe@example.com in database...
-2025-04-08 12:37:32 - Data stored successfully
-2025-04-08 12:37:32 - Storing data for john.doe@example.com in database...
-2025-04-08 12:37:32 - Data stored successfully
-2025-04-08 12:37:33 - User type is: basic
-2025-04-08 12:37:33 - Status: 500
-2025-04-08 12:37:33 - Error response: [object Object]
-2025-04-08 12:47:48 - Server is initializing...
-2025-04-08 12:53:49 - Server is initializing...
-2025-04-08 12:53:59 - Server is initializing...
-2025-04-08 12:55:04 - Server is initializing...
-2025-04-08 12:59:50 - Server is initializing...
-2025-04-08 13:00:28 - Server is initializing...
-2025-04-08 13:00:50 - Server is initializing...
-2025-04-08 13:02:37 - Server is initializing...
-2025-04-08 13:03:09 - Server is initializing...
-2025-04-08 13:05:00 - Server is initializing...
-2025-04-08 13:05:20 - Server is initializing...
-2025-04-08 13:05:30 - Server is initializing...
-2025-04-08 13:05:30 - Server is initializing...
-2025-04-08 13:05:30 - Server is initializing...
-2025-04-08 13:05:30 - Server is initializing...
-2025-04-08 13:05:30 - Server is initializing...
-2025-04-08 13:05:30 - Server is initializing...
-2025-04-08 13:05:30 - Server is initializing...
-2025-04-08 13:05:30 - Server is initializing...
-2025-04-08 13:05:30 - Sending email to: john.doe@example.com...
-2025-04-08 13:05:30 - Email sent successfully
-2025-04-08 13:05:30 - Sending email to: john.doe@example.com...
-2025-04-08 13:05:30 - Failed to send email
-2025-04-08 13:05:30 - Sending email to: john.doe@example.com...
-2025-04-08 13:05:30 - Server is initializing...
-2025-04-08 13:05:30 - Storing data for john.doe@example.com in database...
-2025-04-08 13:05:30 - Server is initializing...
-2025-04-08 13:05:30 - Server is initializing...
-2025-04-08 13:05:30 - Storing data for john.doe@example.com in database...
-2025-04-08 13:05:30 - Storing data for john.doe@example.com in database...
-2025-04-08 13:05:30 - Data stored successfully
-2025-04-08 13:05:30 - Storing data for john.doe@example.com in database...
-2025-04-08 13:05:30 - Server is initializing...
-2025-04-08 13:05:30 - Storing data for john.doe@example.com in database...
-2025-04-08 13:05:30 - Data stored successfully
-2025-04-08 13:05:30 - Storing data for john.doe@example.com in database...
-2025-04-08 13:05:30 - Data stored successfully
-2025-04-08 13:05:31 - User type is: basic
-2025-04-08 13:05:31 - Status: 500
-2025-04-08 13:05:31 - Error response: [object Object]
-2025-04-08 13:08:21 - Server is initializing...
-2025-04-08 13:10:09 - Server is initializing...
-2025-04-08 13:11:36 - Server is initializing...
-2025-04-08 13:13:44 - Server is initializing...
-2025-04-08 13:15:08 - Server is initializing...
-2025-04-08 13:17:11 - Server is initializing...
-2025-04-08 13:18:38 - Server is initializing...
-2025-04-08 13:22:05 - Server is initializing...
-2025-04-08 13:23:05 - Server is initializing...
-2025-04-08 13:24:34 - Server is initializing...
-2025-04-08 13:24:58 - Server is initializing...
-2025-04-08 13:25:27 - Server is initializing...
-2025-04-08 13:26:15 - Server is initializing...
-2025-04-08 13:28:21 - Server is initializing...
-2025-04-08 13:28:33 - Server is initializing...
-2025-04-08 13:29:17 - Server is initializing...
-2025-04-08 13:30:31 - Server is initializing...
-2025-04-08 13:32:52 - Server is initializing...
-2025-04-08 13:33:54 - Server is initializing...
-2025-04-08 13:34:45 - Server is initializing...
-2025-04-08 13:36:29 - Server is initializing...
-2025-04-08 13:37:21 - Server is initializing...
-2025-04-08 13:37:36 - Server is initializing...
-2025-04-08 13:37:46 - Server is initializing...
-2025-04-08 13:37:46 - Server is initializing...
-2025-04-08 13:37:46 - Server is initializing...
-2025-04-08 13:37:46 - Server is initializing...
-2025-04-08 13:37:46 - Server is initializing...
-2025-04-08 13:37:46 - Server is initializing...
-2025-04-08 13:37:46 - Server is initializing...
-2025-04-08 13:37:46 - Server is initializing...
-2025-04-08 13:37:46 - Server is initializing...
-2025-04-08 13:37:46 - Server is initializing...
-2025-04-08 13:37:46 - Server is initializing...
-2025-04-08 13:37:46 - Server is initializing...
-2025-04-08 13:37:46 - Sending email to: john.doe@example.com...
-2025-04-08 13:37:46 - Email sent successfully
-2025-04-08 13:37:46 - Sending email to: john.doe@example.com...
-2025-04-08 13:37:46 - Server is initializing...
-2025-04-08 13:37:46 - Failed to send email
-2025-04-08 13:37:46 - Sending email to: john.doe@example.com...
-2025-04-08 13:37:46 - Storing data for john.doe@example.com in database...
-2025-04-08 13:37:46 - Storing data for john.doe@example.com in database...
-2025-04-08 13:37:46 - Storing data for john.doe@example.com in database...
-2025-04-08 13:37:46 - Data stored successfully
-2025-04-08 13:37:46 - Storing data for john.doe@example.com in database...
-2025-04-08 13:37:46 - Storing data for john.doe@example.com in database...
-2025-04-08 13:37:46 - Data stored successfully
-2025-04-08 13:37:46 - Storing data for john.doe@example.com in database...
-2025-04-08 13:37:46 - Data stored successfully
-2025-04-08 13:37:47 - User type is: basic
-2025-04-08 13:37:48 - Status: 500
-2025-04-08 13:37:48 - Error response: [object Object]
-2025-04-08 13:51:23 - Server is initializing...
-2025-04-08 13:51:23 - Server is initializing...
-2025-04-08 13:51:23 - Server is initializing...
-2025-04-08 13:51:23 - Server is initializing...
-2025-04-08 13:51:23 - Server is initializing...
-2025-04-08 13:51:23 - Server is initializing...
-2025-04-08 13:51:23 - Server is initializing...
-2025-04-08 13:51:23 - Sending email to: john.doe@example.com...
-2025-04-08 13:51:23 - Email sent successfully
-2025-04-08 13:51:23 - Sending email to: john.doe@example.com...
-2025-04-08 13:51:23 - Server is initializing...
-2025-04-08 13:51:23 - Failed to send email
-2025-04-08 13:51:23 - Sending email to: john.doe@example.com...
-2025-04-08 13:51:23 - Storing data for john.doe@example.com in database...
-2025-04-08 13:51:23 - Server is initializing...
-2025-04-08 13:51:23 - Storing data for john.doe@example.com in database...
-2025-04-08 13:51:23 - Server is initializing...
-2025-04-08 13:51:23 - Storing data for john.doe@example.com in database...
-2025-04-08 13:51:23 - Data stored successfully
-2025-04-08 13:51:23 - Server is initializing...
-2025-04-08 13:51:23 - Storing data for john.doe@example.com in database...
-2025-04-08 13:51:23 - Storing data for john.doe@example.com in database...
-2025-04-08 13:51:23 - Data stored successfully
-2025-04-08 13:51:23 - Storing data for john.doe@example.com in database...
-2025-04-08 13:51:23 - Data stored successfully
-2025-04-08 13:51:24 - User type is: basic
-2025-04-08 13:51:24 - Status: 500
-2025-04-08 13:51:24 - Error response: [object Object]
-2025-04-08 13:56:05 - Server is initializing...
-2025-04-08 13:56:34 - Server is initializing...
-2025-04-08 13:56:53 - Server is initializing...
-2025-04-08 13:57:54 - Server is initializing...
-2025-04-08 13:58:36 - Server is initializing...
-2025-04-08 14:00:47 - Server is initializing...
-2025-04-08 14:01:27 - Server is initializing...
-2025-04-08 14:04:49 - Server is initializing...
-2025-04-08 14:11:00 - Server is initializing...
-2025-04-08 14:11:08 - Server is initializing...
-2025-04-08 14:11:33 - Server is initializing...
-2025-04-08 14:11:43 - Server is initializing...
-2025-04-08 14:11:43 - Server is initializing...
-2025-04-08 14:11:43 - Server is initializing...
-2025-04-08 14:11:43 - Server is initializing...
-2025-04-08 14:11:43 - Server is initializing...
-2025-04-08 14:11:43 - Server is initializing...
-2025-04-08 14:11:43 - Server is initializing...
-2025-04-08 14:11:43 - Server is initializing...
-2025-04-08 14:11:43 - Server is initializing...
-2025-04-08 14:11:43 - Server is initializing...
-2025-04-08 14:11:43 - Sending email to: john.doe@example.com...
-2025-04-08 14:11:43 - Email sent successfully
-2025-04-08 14:11:43 - Sending email to: john.doe@example.com...
-2025-04-08 14:11:43 - Failed to send email
-2025-04-08 14:11:43 - Sending email to: john.doe@example.com...
-2025-04-08 14:11:43 - Storing data for john.doe@example.com in database...
-2025-04-08 14:11:43 - Storing data for john.doe@example.com in database...
-2025-04-08 14:11:43 - Storing data for john.doe@example.com in database...
-2025-04-08 14:11:43 - Data stored successfully
-2025-04-08 14:11:43 - Storing data for john.doe@example.com in database...
-2025-04-08 14:11:43 - Storing data for john.doe@example.com in database...
-2025-04-08 14:11:43 - Server is initializing...
-2025-04-08 14:11:43 - Data stored successfully
-2025-04-08 14:11:43 - Storing data for john.doe@example.com in database...
-2025-04-08 14:11:43 - Data stored successfully
-2025-04-08 14:11:44 - User type is: basic
-2025-04-08 14:11:44 - Status: 500
-2025-04-08 14:11:44 - Error response: [object Object]
-2025-04-08 14:12:52 - Server is initializing...
-2025-04-08 14:12:52 - Server is initializing...
-2025-04-08 14:12:52 - Server is initializing...
-2025-04-08 14:12:52 - Server is initializing...
-2025-04-08 14:12:52 - Server is initializing...
-2025-04-08 14:12:52 - Server is initializing...
-2025-04-08 14:12:52 - Server is initializing...
-2025-04-08 14:12:52 - Server is initializing...
-2025-04-08 14:12:52 - Server is initializing...
-2025-04-08 14:12:52 - Sending email to: john.doe@example.com...
-2025-04-08 14:12:52 - Email sent successfully
-2025-04-08 14:12:52 - Server is initializing...
-2025-04-08 14:12:52 - Sending email to: john.doe@example.com...
-2025-04-08 14:12:52 - Failed to send email
-2025-04-08 14:12:52 - Server is initializing...
-2025-04-08 14:12:52 - Sending email to: john.doe@example.com...
-2025-04-08 14:12:52 - Server is initializing...
-2025-04-08 14:12:52 - Storing data for john.doe@example.com in database...
-2025-04-08 14:12:52 - Storing data for john.doe@example.com in database...
-2025-04-08 14:12:52 - Storing data for john.doe@example.com in database...
-2025-04-08 14:12:52 - Data stored successfully
-2025-04-08 14:12:52 - Storing data for john.doe@example.com in database...
-2025-04-08 14:12:52 - Storing data for john.doe@example.com in database...
-2025-04-08 14:12:52 - Data stored successfully
-2025-04-08 14:12:52 - Storing data for john.doe@example.com in database...
-2025-04-08 14:12:52 - Data stored successfully
-2025-04-08 14:12:52 - Server is initializing...
-2025-04-08 14:12:53 - User type is: basic
-2025-04-08 14:12:53 - Status: 500
-2025-04-08 14:12:53 - Error response: [object Object]
-2025-04-08 14:22:26 - Server is initializing...
-2025-04-08 14:22:26 - Server is initializing...
-2025-04-08 14:22:26 - Server is initializing...
-2025-04-08 14:22:26 - Server is initializing...
-2025-04-08 14:22:26 - Server is initializing...
-2025-04-08 14:22:26 - Server is initializing...
-2025-04-08 14:22:26 - Server is initializing...
-2025-04-08 14:22:26 - Server is initializing...
-2025-04-08 14:22:27 - Sending email to: john.doe@example.com...
-2025-04-08 14:22:26 - Server is initializing...
-2025-04-08 14:22:27 - Email sent successfully
-2025-04-08 14:22:27 - Sending email to: john.doe@example.com...
-2025-04-08 14:22:27 - Failed to send email
-2025-04-08 14:22:27 - Sending email to: john.doe@example.com...
-2025-04-08 14:22:27 - Storing data for john.doe@example.com in database...
-2025-04-08 14:22:27 - Storing data for john.doe@example.com in database...
-2025-04-08 14:22:27 - Storing data for john.doe@example.com in database...
-2025-04-08 14:22:27 - Data stored successfully
-2025-04-08 14:22:27 - Storing data for john.doe@example.com in database...
-2025-04-08 14:22:27 - Storing data for john.doe@example.com in database...
-2025-04-08 14:22:27 - Data stored successfully
-2025-04-08 14:22:27 - Storing data for john.doe@example.com in database...
-2025-04-08 14:22:27 - Data stored successfully
-2025-04-08 14:22:26 - Server is initializing...
-2025-04-08 14:22:26 - Server is initializing...
-2025-04-08 14:22:27 - User type is: basic
-2025-04-08 14:22:28 - Status: 500
-2025-04-08 14:22:28 - Error response: [object Object]
-2025-04-08 14:23:03 - Server is initializing...
-2025-04-08 14:30:00 - Server is initializing...
-2025-04-08 14:30:33 - Server is initializing...
-2025-04-08 14:31:52 - Server is initializing...
-2025-04-08 14:32:32 - Server is initializing...
-2025-04-08 14:34:26 - Server is initializing...
-2025-04-08 14:36:28 - Server is initializing...
-2025-04-08 14:39:12 - Server is initializing...
-2025-04-08 14:42:03 - Server is initializing...
-2025-04-08 14:42:19 - Server is initializing...
-2025-04-08 14:44:45 - Server is initializing...
-2025-04-08 14:57:19 - Server is initializing...
-2025-04-08 14:57:32 - Server is initializing...
-2025-04-08 15:00:49 - Server is initializing...
-2025-04-08 15:02:42 - Server is initializing...
-2025-04-08 15:04:19 - Server is initializing...
-2025-04-08 15:04:39 - Server is initializing...
-2025-04-08 15:04:52 - Server is initializing...
-2025-04-08 15:05:22 - Server is initializing...
-2025-04-08 15:05:53 - Server is initializing...
-2025-04-08 15:06:08 - Server is initializing...
-2025-04-08 15:06:29 - Server is initializing...
-2025-04-08 15:09:25 - Server is initializing...
-2025-04-08 15:10:40 - Server is initializing...
-2025-04-08 15:11:27 - Server is initializing...
-2025-04-08 15:11:56 - Server is initializing...
-2025-04-08 17:03:13 - Server is initializing...
-2025-04-08 17:04:51 - Server is initializing...
-2025-04-08 17:06:41 - Server is initializing...
-2025-04-08 17:07:17 - Server is initializing...
-2025-04-08 17:09:00 - Server is initializing...
-2025-04-08 17:10:21 - Server is initializing...
-2025-04-08 17:10:41 - Server is initializing...
-2025-04-08 17:10:57 - Server is initializing...
-2025-04-08 17:11:32 - Server is initializing...
-2025-04-08 17:12:21 - Server is initializing...
-2025-04-08 17:12:49 - Server is initializing...
-2025-04-08 17:14:36 - Server is initializing...
-2025-04-08 17:15:34 - Server is initializing...
-2025-04-08 17:15:55 - Server is initializing...
-2025-04-08 17:18:20 - Server is initializing...
-2025-04-08 17:19:53 - Server is initializing...
-2025-04-08 17:22:29 - Server is initializing...
-2025-04-08 17:24:26 - Server is initializing...
-2025-04-08 17:24:50 - Server is initializing...
-2025-04-08 17:25:31 - Server is initializing...
-2025-04-08 17:29:10 - Server is initializing...
-2025-04-08 17:29:46 - Server is initializing...
-2025-04-08 17:30:06 - Server is initializing...
-2025-04-08 17:30:41 - Server is initializing...
-2025-04-08 17:30:50 - Server is initializing...
-2025-04-08 17:32:33 - Server is initializing...
-2025-04-08 17:33:22 - Server is initializing...
-2025-04-08 17:33:53 - Server is initializing...
-2025-04-08 17:35:54 - Server is initializing...
-2025-04-08 17:35:54 - Server is initializing...
-2025-04-08 17:35:54 - Server is initializing...
-2025-04-08 17:35:54 - Server is initializing...
-2025-04-08 17:35:54 - Server is initializing...
-2025-04-08 17:35:54 - Server is initializing...
-2025-04-08 17:35:54 - Server is initializing...
-2025-04-08 17:35:54 - Server is initializing...
-2025-04-08 17:35:54 - Server is initializing...
-2025-04-08 17:35:55 - Sending email to: john.doe@example.com...
-2025-04-08 17:35:55 - Email sent successfully
-2025-04-08 17:35:55 - Sending email to: john.doe@example.com...
-2025-04-08 17:35:55 - Failed to send email
-2025-04-08 17:35:55 - Sending email to: john.doe@example.com...
-2025-04-08 17:35:55 - Storing data for john.doe@example.com in database...
-2025-04-08 17:35:54 - Server is initializing...
-2025-04-08 17:35:54 - Server is initializing...
-2025-04-08 17:35:55 - Storing data for john.doe@example.com in database...
-2025-04-08 17:35:55 - Storing data for john.doe@example.com in database...
-2025-04-08 17:35:55 - Data stored successfully
-2025-04-08 17:35:55 - Storing data for john.doe@example.com in database...
-2025-04-08 17:35:55 - Storing data for john.doe@example.com in database...
-2025-04-08 17:35:55 - Data stored successfully
-2025-04-08 17:35:55 - Storing data for john.doe@example.com in database...
-2025-04-08 17:35:55 - Data stored successfully
-2025-04-08 17:35:55 - User type is: basic
-2025-04-08 17:35:56 - Status: 500
-2025-04-08 17:35:56 - Error response: [object Object]
-2025-04-08 17:37:10 - Server is initializing...
-2025-04-08 17:37:10 - Server is initializing...
-2025-04-08 17:37:10 - Server is initializing...
-2025-04-08 17:37:10 - Server is initializing...
-2025-04-08 17:37:10 - Server is initializing...
-2025-04-08 17:37:10 - Server is initializing...
-2025-04-08 17:37:10 - Server is initializing...
-2025-04-08 17:37:10 - Server is initializing...
-2025-04-08 17:37:10 - Server is initializing...
-2025-04-08 17:37:11 - Sending email to: john.doe@example.com...
-2025-04-08 17:37:11 - Email sent successfully
-2025-04-08 17:37:11 - Sending email to: john.doe@example.com...
-2025-04-08 17:37:11 - Failed to send email
-2025-04-08 17:37:11 - Sending email to: john.doe@example.com...
-2025-04-08 17:37:10 - Server is initializing...
-2025-04-08 17:37:11 - Storing data for john.doe@example.com in database...
-2025-04-08 17:37:11 - Storing data for john.doe@example.com in database...
-2025-04-08 17:37:11 - Storing data for john.doe@example.com in database...
-2025-04-08 17:37:11 - Data stored successfully
-2025-04-08 17:37:10 - Server is initializing...
-2025-04-08 17:37:11 - Storing data for john.doe@example.com in database...
-2025-04-08 17:37:11 - Storing data for john.doe@example.com in database...
-2025-04-08 17:37:11 - Data stored successfully
-2025-04-08 17:37:11 - Storing data for john.doe@example.com in database...
-2025-04-08 17:37:11 - Data stored successfully
-2025-04-08 17:37:11 - User type is: basic
-2025-04-08 17:37:12 - Status: 500
-2025-04-08 17:37:12 - Error response: [object Object]
-2025-04-08 17:38:03 - Server is initializing...
-2025-04-08 17:38:03 - Server is initializing...
-2025-04-08 17:38:03 - Server is initializing...
-2025-04-08 17:38:03 - Server is initializing...
-2025-04-08 17:38:03 - Server is initializing...
-2025-04-08 17:38:03 - Server is initializing...
-2025-04-08 17:38:03 - Server is initializing...
-2025-04-08 17:38:03 - Server is initializing...
-2025-04-08 17:38:03 - Server is initializing...
-2025-04-08 17:38:03 - Server is initializing...
-2025-04-08 17:38:03 - Server is initializing...
-2025-04-08 17:38:04 - Sending email to: john.doe@example.com...
-2025-04-08 17:38:04 - Email sent successfully
-2025-04-08 17:38:04 - Sending email to: john.doe@example.com...
-2025-04-08 17:38:04 - Failed to send email
-2025-04-08 17:38:04 - Sending email to: john.doe@example.com...
-2025-04-08 17:38:04 - Storing data for john.doe@example.com in database...
-2025-04-08 17:38:04 - Storing data for john.doe@example.com in database...
-2025-04-08 17:38:04 - Storing data for john.doe@example.com in database...
-2025-04-08 17:38:04 - Data stored successfully
-2025-04-08 17:38:03 - Server is initializing...
-2025-04-08 17:38:04 - Storing data for john.doe@example.com in database...
-2025-04-08 17:38:04 - Storing data for john.doe@example.com in database...
-2025-04-08 17:38:04 - Data stored successfully
-2025-04-08 17:38:04 - Storing data for john.doe@example.com in database...
-2025-04-08 17:38:04 - Data stored successfully
-2025-04-08 17:38:05 - User type is: basic
-2025-04-08 17:38:05 - Status: 500
-2025-04-08 17:38:05 - Error response: [object Object]
-2025-04-08 17:38:44 - Server is initializing...
-2025-04-08 17:38:44 - Server is initializing...
-2025-04-08 17:38:44 - Server is initializing...
-2025-04-08 17:38:44 - Server is initializing...
-2025-04-08 17:38:44 - Server is initializing...
-2025-04-08 17:38:44 - Server is initializing...
-2025-04-08 17:38:44 - Server is initializing...
-2025-04-08 17:38:44 - Server is initializing...
-2025-04-08 17:38:44 - Server is initializing...
-2025-04-08 17:38:44 - Server is initializing...
-2025-04-08 17:38:44 - Sending email to: john.doe@example.com...
-2025-04-08 17:38:44 - Email sent successfully
-2025-04-08 17:38:44 - Sending email to: john.doe@example.com...
-2025-04-08 17:38:44 - Failed to send email
-2025-04-08 17:38:44 - Sending email to: john.doe@example.com...
-2025-04-08 17:38:44 - Server is initializing...
-2025-04-08 17:38:44 - Storing data for john.doe@example.com in database...
-2025-04-08 17:38:44 - Server is initializing...
-2025-04-08 17:38:44 - Storing data for john.doe@example.com in database...
-2025-04-08 17:38:44 - Storing data for john.doe@example.com in database...
-2025-04-08 17:38:44 - Data stored successfully
-2025-04-08 17:38:44 - Storing data for john.doe@example.com in database...
-2025-04-08 17:38:44 - Storing data for john.doe@example.com in database...
-2025-04-08 17:38:44 - Data stored successfully
-2025-04-08 17:38:44 - Storing data for john.doe@example.com in database...
-2025-04-08 17:38:44 - Data stored successfully
-2025-04-08 17:38:45 - User type is: basic
-2025-04-08 17:38:45 - Status: 500
-2025-04-08 17:38:45 - Error response: [object Object]
-2025-04-08 17:39:25 - Server is initializing...
-2025-04-08 17:39:25 - Server is initializing...
-2025-04-08 17:39:25 - Server is initializing...
-2025-04-08 17:39:25 - Server is initializing...
-2025-04-08 17:39:25 - Server is initializing...
-2025-04-08 17:39:25 - Server is initializing...
-2025-04-08 17:39:25 - Server is initializing...
-2025-04-08 17:39:25 - Server is initializing...
-2025-04-08 17:39:25 - Server is initializing...
-2025-04-08 17:39:25 - Server is initializing...
-2025-04-08 17:39:25 - Server is initializing...
-2025-04-08 17:39:25 - Server is initializing...
-2025-04-08 17:39:25 - Sending email to: john.doe@example.com...
-2025-04-08 17:39:25 - Email sent successfully
-2025-04-08 17:39:25 - Sending email to: john.doe@example.com...
-2025-04-08 17:39:25 - Failed to send email
-2025-04-08 17:39:25 - Sending email to: john.doe@example.com...
-2025-04-08 17:39:25 - Storing data for john.doe@example.com in database...
-2025-04-08 17:39:25 - Storing data for john.doe@example.com in database...
-2025-04-08 17:39:25 - Storing data for john.doe@example.com in database...
-2025-04-08 17:39:25 - Data stored successfully
-2025-04-08 17:39:25 - Storing data for john.doe@example.com in database...
-2025-04-08 17:39:25 - Server is initializing...
-2025-04-08 17:39:25 - Storing data for john.doe@example.com in database...
-2025-04-08 17:39:25 - Data stored successfully
-2025-04-08 17:39:25 - Storing data for john.doe@example.com in database...
-2025-04-08 17:39:25 - Data stored successfully
-2025-04-08 17:39:26 - User type is: basic
-2025-04-08 17:39:26 - Status: 500
-2025-04-08 17:39:26 - Error response: [object Object]
+2025-04-02 21:57:53 - Server is initializing...
+2025-04-02 21:57:54 - Server is running on port 3000
+2025-04-02 21:57:55 - Server is initializing...
+2025-04-02 21:57:55 - Server is running on port 3000
+2025-04-03 03:26:05 - Server is initializing...
+2025-04-03 03:26:07 - Server is running on port 3000
+2025-04-03 04:13:24 - Server is initializing...
+2025-04-03 04:13:25 - Server is running on port 3000
+2025-04-03 04:43:40 - Server is initializing...
+2025-04-03 04:43:41 - Server is running on port 3000
+2025-04-03 05:02:22 - Server is initializing...
+2025-04-03 05:02:23 - Server is running on port 3000
+2025-04-03 06:40:20 - Server is initializing...
+2025-04-03 06:40:22 - Server is running on port 3000
+2025-04-03 12:52:13 - Server is initializing...
+2025-04-03 12:52:14 - Server is running on port 3000
+2025-04-03 13:23:48 - Server is initializing...
+2025-04-03 13:23:48 - Server is running on port 3000