@logmint/sdk 1.1.4 → 1.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/cloud/addLogs.js +1 -1
  2. package/package.json +1 -1
package/cloud/addLogs.js CHANGED
@@ -9,7 +9,7 @@ setInterval(() => {
9
9
  buffer.logs = [];
10
10
  addLogs({ logs: batch });
11
11
  }
12
- }, 1000 * 60 * 10); // every 10 minutes
12
+ }, 1000 * 60); // every 1 minute
13
13
 
14
14
 
15
15
  const addLogs = async (logs) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@logmint/sdk",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "description": "LogMint SDK for sending audit logs, metrics, application logs",
5
5
  "main": "index.js",
6
6
  "type": "commonjs",