diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2012-03-26 17:50:52 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2012-03-26 17:53:21 +0300 |
commit | e56c5b511c84a032baecc6c67bb90f13646e939d (patch) | |
tree | ae6f2538e18b59ad77ac6340ae6c43c8b1308faf /sal/osl | |
parent | b5ca34fa409bc4cbeb41a84b900612e302f5b0fb (diff) |
Add an OSL_TRACE when opening Android /assets files
Diffstat (limited to 'sal/osl')
-rw-r--r-- | sal/osl/unx/file.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sal/osl/unx/file.cxx b/sal/osl/unx/file.cxx index c513f601a582..5e59f7c4ff8e 100644 --- a/sal/osl/unx/file.cxx +++ b/sal/osl/unx/file.cxx @@ -907,6 +907,8 @@ SAL_CALL osl_openFilePath( const char *cpFilePath, oslFileHandle* pHandle, sal_u void *address; size_t size; address = lo_apkentry(cpFilePath, &size); + OSL_TRACE("osl_openFile(%s): %p", + cpFilePath, address); if (address == NULL) { errno = ENOENT; |