DBA Data[Home] [Help]

APPS.OKC_DEBUG dependencies on FND_LOG

Line 141: g_profile_log_level := Fnd_Log.G_CURRENT_RUNTIME_LEVEL;

137: resp_id => l_resp_id,
138: resp_appl_id => l_resp_appl_id);
139: */
140:
141: g_profile_log_level := Fnd_Log.G_CURRENT_RUNTIME_LEVEL;
142:
143: End If;
144:
145:

Line 174: If Fnd_Log.Test(p_level, p_module) Then

170: If (p_level >= g_profile_log_level) Then
171: --
172: -- Also logging should be enabled for the current module.
173: --
174: If Fnd_Log.Test(p_level, p_module) Then
175: If instr(p_msg, OKC_API.G_MISS_CHAR) > 0 then
176: Fnd_Log.String(p_level, p_module, g_indent_str || g_proc || ' : ' ||Replace(p_msg,OKC_API.G_MISS_CHAR,'?'));
177: Else
178: Fnd_Log.String(p_level, p_module, g_indent_str || g_proc || ' : ' ||p_msg);

Line 176: Fnd_Log.String(p_level, p_module, g_indent_str || g_proc || ' : ' ||Replace(p_msg,OKC_API.G_MISS_CHAR,'?'));

172: -- Also logging should be enabled for the current module.
173: --
174: If Fnd_Log.Test(p_level, p_module) Then
175: If instr(p_msg, OKC_API.G_MISS_CHAR) > 0 then
176: Fnd_Log.String(p_level, p_module, g_indent_str || g_proc || ' : ' ||Replace(p_msg,OKC_API.G_MISS_CHAR,'?'));
177: Else
178: Fnd_Log.String(p_level, p_module, g_indent_str || g_proc || ' : ' ||p_msg);
179: End if;
180: End If;

Line 178: Fnd_Log.String(p_level, p_module, g_indent_str || g_proc || ' : ' ||p_msg);

174: If Fnd_Log.Test(p_level, p_module) Then
175: If instr(p_msg, OKC_API.G_MISS_CHAR) > 0 then
176: Fnd_Log.String(p_level, p_module, g_indent_str || g_proc || ' : ' ||Replace(p_msg,OKC_API.G_MISS_CHAR,'?'));
177: Else
178: Fnd_Log.String(p_level, p_module, g_indent_str || g_proc || ' : ' ||p_msg);
179: End if;
180: End If;
181: End If;
182: End Log;