location of FND_FILE log file

1.1k Views Asked by At

I create a log file in my procedure:

v_log_file        VARCHAR2 (250) := FND_FILE.LOG;

and during my procedure I write in this file :

FND_FILE.PUT_LINE (
               v_log_file,
               '### start');

How can I see my log file to check if it's written correctly? Where can I find my log file?

1

There are 1 best solutions below

0
Sivabalanarayanan L On

You can use DBMS_OUTPUT.PUT_LINE instead to view it in SQL developer. Use the below code before compiling your anonymous block.

   SET SERVEROUTPUT ON;