Last active
March 21, 2017 17:14
-
-
Save allenluce/a86dead6cec73c7a1633a1b6472f8cbf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.log(`[${process.pid}] ${Date.now()} ${config.file}\tCALL close operation`) | |
oldObj.close(function (err) { | |
console.log(`[${process.pid}] ${Date.now()} ${config.file}\tCOMPLETE close operation`) | |
// ... handle err ... | |
} | |
console.log(`[${process.pid}] ${Date.now()} ${config.file}\tAFTER CALL close operation`) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[99461] 1490022307339 obj1.bin CALL close operation | |
[99461] 1490022307340 obj1.bin AFTER CALL close operation | |
[99461] 1490022307340 obj2.bin CALL close operation | |
[99461] 1490022307340 obj2.bin AFTER CALL close operation | |
[99461] 1490022307340 obj3.bin CALL close operation | |
[99461] 1490022307340 obj3.bin AFTER CALL close operation | |
[99461] 1490022307340 obj4.bin CALL close operation | |
[99461] 1490022307340 obj4.bin AFTER CALL close operation | |
[99461] 1490022307341 obj5.bin CALL close operation | |
[99461] 1490022307353 obj5.bin AFTER CALL close operation | |
[99461] 1490022308550 obj1.bin COMPLETE close operation | |
[99461] 1490022308550 obj2.bin COMPLETE close operation | |
[99461] 1490022308550 obj3.bin COMPLETE close operation | |
[99461] 1490022308550 obj4.bin COMPLETE close operation | |
[99461] 1490022308550 obj5.bin COMPLETE close operation |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment