Dont format some things
This commit is contained in:
parent
8f1781f7eb
commit
0feb83b637
|
|
@ -112,7 +112,7 @@ APPLICATION_INFO::UpdateAppOfflineFileHandle()
|
|||
// if it was, log that app_offline has been dropped.
|
||||
if (m_fAppOfflineFound)
|
||||
{
|
||||
UTILITY::LogEventF(g_hEventLog,
|
||||
UTILITY::LogEvent(g_hEventLog,
|
||||
EVENTLOG_INFORMATION_TYPE,
|
||||
ASPNETCORE_EVENT_RECYCLE_APPOFFLINE_REMOVED,
|
||||
ASPNETCORE_EVENT_RECYCLE_APPOFFLINE_REMOVED_MSG);
|
||||
|
|
@ -258,7 +258,7 @@ APPLICATION_INFO::FindRequestHandlerAssembly()
|
|||
{
|
||||
if (FAILED(hr = FindNativeAssemblyFromHostfxr(&struFileName)))
|
||||
{
|
||||
UTILITY::LogEventF(g_hEventLog,
|
||||
UTILITY::LogEvent(g_hEventLog,
|
||||
EVENTLOG_INFORMATION_TYPE,
|
||||
ASPNETCORE_EVENT_INPROCESS_RH_MISSING,
|
||||
ASPNETCORE_EVENT_INPROCESS_RH_MISSING_MSG);
|
||||
|
|
@ -268,7 +268,7 @@ APPLICATION_INFO::FindRequestHandlerAssembly()
|
|||
{
|
||||
if (FAILED(hr = FindNativeAssemblyFromGlobalLocation(&struFileName)))
|
||||
{
|
||||
UTILITY::LogEventF(g_hEventLog,
|
||||
UTILITY::LogEvent(g_hEventLog,
|
||||
EVENTLOG_INFORMATION_TYPE,
|
||||
ASPNETCORE_EVENT_OUT_OF_PROCESS_RH_MISSING,
|
||||
ASPNETCORE_EVENT_OUT_OF_PROCESS_RH_MISSING_MSG);
|
||||
|
|
|
|||
|
|
@ -160,7 +160,7 @@ HRESULT
|
|||
|
||||
if (fDisableANCM)
|
||||
{
|
||||
UTILITY::LogEventF(g_hEventLog,
|
||||
UTILITY::LogEvent(g_hEventLog,
|
||||
EVENTLOG_WARNING_TYPE,
|
||||
ASPNETCORE_EVENT_MODULE_DISABLED,
|
||||
ASPNETCORE_EVENT_MODULE_DISABLED_MSG);
|
||||
|
|
|
|||
|
|
@ -637,11 +637,11 @@ UTILITY::LogEventF(
|
|||
...
|
||||
)
|
||||
{
|
||||
STACK_STRU ( strEventMsg, 256 );
|
||||
|
||||
va_list argsList;
|
||||
va_start(argsList, pstrMsg);
|
||||
|
||||
STACK_STRU ( strEventMsg, 256 );
|
||||
|
||||
if (SUCCEEDED(strEventMsg.SafeSnwprintf(
|
||||
pstrMsg,
|
||||
argsList)))
|
||||
|
|
|
|||
Loading…
Reference in New Issue