DBA Data[Home] [Help]

APPS.EGO_COMMON_PVT dependencies on FND_LOG

Line 226: * This procedure is used to write the debug messages into FND_LOG

222:
223: END GET_OPTION_VALUE;
224:
225: /*
226: * This procedure is used to write the debug messages into FND_LOG
227: * If this is called from within a concurrent program, the request_id
228: * will be prepended in the message.
229: * @param p_log_level: log level, a constant from FND_LOG.
230: * If passed null, then FND_LOG.LEVEL_STATEMENT

Line 229: * @param p_log_level: log level, a constant from FND_LOG.

225: /*
226: * This procedure is used to write the debug messages into FND_LOG
227: * If this is called from within a concurrent program, the request_id
228: * will be prepended in the message.
229: * @param p_log_level: log level, a constant from FND_LOG.
230: * If passed null, then FND_LOG.LEVEL_STATEMENT
231: * will be used for logging.
232: * @param p_module: Name of the calling module
233: * for eg. EGO_IMPORT_PVT.Resolve_Child_Entities

Line 230: * If passed null, then FND_LOG.LEVEL_STATEMENT

226: * This procedure is used to write the debug messages into FND_LOG
227: * If this is called from within a concurrent program, the request_id
228: * will be prepended in the message.
229: * @param p_log_level: log level, a constant from FND_LOG.
230: * If passed null, then FND_LOG.LEVEL_STATEMENT
231: * will be used for logging.
232: * @param p_module: Name of the calling module
233: * for eg. EGO_IMPORT_PVT.Resolve_Child_Entities
234: * @param p_message: Message text

Line 241: l_log_level NUMBER := NVL(p_log_level, FND_LOG.LEVEL_STATEMENT);

237: p_module VARCHAR2,
238: p_message VARCHAR2)
239: IS
240: l_request_id NUMBER := FND_GLOBAL.CONC_REQUEST_ID;
241: l_log_level NUMBER := NVL(p_log_level, FND_LOG.LEVEL_STATEMENT);
242: l_message VARCHAR2(32000);
243: BEGIN
244: IF l_request_id IS NOT NULL AND l_request_id > 0 THEN
245: l_message := '[Request ID=' || l_request_id || ']- ' || p_message;

Line 250: IF ( l_log_level >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) THEN

246: ELSE
247: l_message := p_message;
248: END IF;
249:
250: IF ( l_log_level >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) THEN
251: FND_LOG.STRING( l_log_level, p_module, l_message );
252: END IF;
253: END WRITE_DIAGNOSTIC;
254:

Line 251: FND_LOG.STRING( l_log_level, p_module, l_message );

247: l_message := p_message;
248: END IF;
249:
250: IF ( l_log_level >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) THEN
251: FND_LOG.STRING( l_log_level, p_module, l_message );
252: END IF;
253: END WRITE_DIAGNOSTIC;
254:
255: