mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 10:26:08 +01:00 
			
		
		
		
	improve logging a little bit
This commit is contained in:
		| @@ -161,7 +161,7 @@ async function transactional(func) { | ||||
|     } | ||||
|  | ||||
|     let ret = null; | ||||
|     const error = new Error(); // to capture correct stack trace in case of exception | ||||
|     const thisError = new Error(); // to capture correct stack trace in case of exception | ||||
|  | ||||
|     transactionActive = true; | ||||
|     transactionPromise = new Promise(async (resolve, reject) => { | ||||
| @@ -179,7 +179,7 @@ async function transactional(func) { | ||||
|         } | ||||
|         catch (e) { | ||||
|             if (transactionActive) { | ||||
|                 log.error("Error executing transaction, executing rollback. Inner exception: " + e.stack + error.stack); | ||||
|                 log.error("Error executing transaction, executing rollback. Inner stack: " + e.stack + "\nOutside stack: " + thisError.stack); | ||||
|  | ||||
|                 await rollback(); | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user