loginit

################################################################################
# name    : log_file_init
# describe: initialize log file, and process log file backup.
# input   : null
# output  : null
# rerurn  : 0:success
#           1:failed
# invoker : private
################################################################################
function log_file_init
{
	typeset LOG_FILE_DIR="${HA_LOG_FILE_DIR}"	
	typeset MAX_LOG_FILE_SIZE=10485760
	typeset MAX_LOG_FILE_BACKUP=10
	typeset log_file_name="${HA_LOG_FILE}"
	
	if [ ! -f "${log_file_name}" ]; then		
		if [ ! -d "${LOG_FILE_DIR}" ]; then
			mkdir -p "${LOG_FILE_DIR}" > /dev/null 2>&1
			typeset rt=$?
			chmod 777 "${LOG_FILE_DIR}" > /dev/null 2>&1
			if [ $? -ne 0 -o ${rt} -ne 0 ]; then
				#echo "Creating log dir: ${LOG_FILE_DIR} failed."
				return 1
			fi
		fi
		
		touch "${log_file_name}" > /dev/null 2>&1
		typeset rt=$?
		chmod 777 "${log_file_name}" > /dev/null 2>&1
		if [ $? -ne 0 -o ${rt} -ne 0 ]; then
			#echo "Creating log file: ${log_file_name} failed."
			return 1
		fi
		
		return 0
	fi
	
	typeset file_size=$(wc -c "${log_file_name}" | awk '{ print $1; }')
	if [ ${file_size} -ge ${MAX_LOG_FILE_SIZE} ]; then
		# backup log file name format: ${log_file_name}.yyyymmdd.n
		typeset log_file_base_name=$(basename "${log_file_name}")
		typeset bak_log_file_list=$((cd "${LOG_FILE_DIR}"; ls) | sed -n "/^${log_file_base_name}\.[0-9]\{14\}\.[1-9][0-9]*\$/p" | awk -F. -vmaxnum=${MAX_LOG_FILE_BACKUP} '{ if ($4 <= maxnum ) { print $0; } }' | sort -r -t. -k4 -n)
		if [ "x${bak_log_file_list}" != "x" ]; then
			for logfile in ${bak_log_file_list}
			do
				typeset leadpart=$(echo "${logfile}" | cut -d. -f1-3)
				typeset suffix=$(echo "${logfile}" | cut -d. -f4)
				if [ ${suffix} -eq ${MAX_LOG_FILE_BACKUP} ]; then
					rm -f "${LOG_FILE_DIR}/${logfile}"
					continue
				fi
				
				((suffix=suffix+1))
				(cd "${LOG_FILE_DIR}"; mv -f "${logfile}" "${leadpart}.${suffix}")
			done
		fi
		
		mv -f "${log_file_name}" "${log_file_name}.$(date +'%Y%m%d%H%M%S').1"
		
		# recreate a log file
		touch "${log_file_name}" > /dev/null 2>&1
		typeset rt=$?
		chmod 777 "${log_file_name}" > /dev/null 2>&1
		if [ $? -ne 0 -o ${rt} -ne 0 ]; then
			#echo "Creating log file: ${log_file_name} failed."
			return 1
		fi
		
		return 0
	fi
	
	return 0
}

 

0x000000000b01626c CitySample!FVulkanCommandBufferManager::PrepareForNewActiveCommandBuffer()() 0x000000000b0e8901 CitySample!FVulkanViewport::Present(FVulkanCommandListContext*, FVulkanCmdBuffer*, FVulkanQueue*, FVulkanQueue*, bool)() 0x000000000b0a8080 CitySample!FVulkanCommandListContext::RHIEndDrawingViewport(FRHIViewport*, bool, bool)() 0x000000000b21bcb1 CitySample!FRHICommand<FRHICommandEndDrawingViewport, FRHICommandEndDrawingViewportString2071>::ExecuteAndDestruct(FRHICommandListBase&, FRHICommandListDebugContext&)() 0x000000000b1d6c5e CitySample!FRHICommandListBase::Execute(TRHIPipelineArray<IRHIComputeContext*>&, FRHICommandListBase::FPersistentState::FGPUStats*)() 0x000000000b233c1e CitySample!UE::Core::Private::Function::TFunctionRefCaller<FRHICommandListImmediate::ExecuteAndReset()::$_124, void ()>::Call(void*)() 0x00000000055913aa CitySample!TGraphTask<TFunctionGraphTaskImpl<void (), (ESubsequentsMode::Type)0> >::ExecuteTask(TArray<FBaseGraphTask*, TSizedDefaultAllocator<32> >&, ENamedThreads::Type, bool)() 0x0000000007ca4185 CitySample!FNamedTaskThread::ProcessTasksNamedThread(int, bool)() 0x0000000007ca27e0 CitySample!FNamedTaskThread::ProcessTasksUntilQuit(int)() 0x0000000007ca16d9 CitySample!FTaskGraphCompatibilityImplementation::ProcessThreadUntilRequestReturn(ENamedThreads::Type)() 0x000000000b31401c CitySample!FRHIThread::Run()() 0x0000000007db39a6 CitySample!FRunnableThreadPThread::Run()() 0x0000000007d381a8 CitySample!FRunnableThreadPThread::_ThreadProc(void*)() 0x00007965a3c94ac3 libc.so.6!UnknownFunction(0x94ac2) 0x00007965a3d268c0 libc.so.6!UnknownFunction(0x1268bf) [2025.10.11-12.13.49:200][ 29]LogExit: Executing StaticShutdownAfterError Malloc Size=131160 LargeMemoryPoolOffset=393352 Malloc Size=131160 LargeMemoryPoolOffset=524536 Malloc Size=792707 LargeMemoryPoolOffset=1317267 LogPakFile: Display: Found Pak file ../../../Engine/Programs/CrashReportClient/Content/Paks/CrashReportClient.pak attempting to mount. LogPakFile: Display: Mounting pak file ../../../Engine/Programs/CrashReportClient/Content/Paks/CrashReportClient.pak. LogPakFile: Display: Mounted Pak file '../../../Engine/Programs/CrashReportClient/Content/Paks/CrashReportClient.pak', mount point: '../../../Engine/' LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +8:00, Platform Override: '' LogInit: ExecutableName: CrashReportClient LogInit: Build: ++UE5+Release-5.2-CL-26001984 LogInit: Engine Version: 5.2.1-26001984+++UE5+Release-5.2 LogInit: Compatible Engine Version: 5.2.0-25360045+++UE5+Release-5.2 LogInit: Net CL: 25360045 LogInit: OS: Ubuntu 22.04.5 LTS (6.8.0-85-generic), CPU: 12th Gen Intel(R) Core(TM) i9-12900K, GPU: NVIDIA GeForce RTX 4090 (NVIDIA UNIX x86_64 Kernel Module 580.65.06 Sun Jul 27 07:14:19 UTC 2025) LogInit: Compiled (64-bit): Jun 15 2023 05:00:12 LogInit: Architecture: x64 LogInit: Compiled with Clang: 15.0.1 (https://github.com/llvm/llvm-project b73d2c8c720a8c8e6e73b11be4e27afa6cb75bdf) LogInit: Build Configuration: Shipping LogInit: Branch Name: ++UE5+Release-5.2 LogInit: Command Line: -Abslog="/media/lxng/jixie/OpenFly-Platform/envs/ue/env_ue_bigcity/City_UE52/Saved/Logs/City_UE52-CRC.log" "/media/lxng/jixie/OpenFly-Platform/envs/ue/env_ue_bigcity/City_UE52/Saved/Crashes/crashinfo-City_UE52-pid-25976-C08B43F9B4B5419E88A5F06F0905ED43/" LogInit: Base Directory: /media/lxng/jixie/OpenFly-Platform/envs/ue/env_ue_bigcity/Engine/Binaries/Linux/ LogInit: Allocator: Mimalloc LogInit: Installed Engine Build: 1 LogInit: Presizing for max 100000 objects, including 0 objects not considered by GC, pre-allocating 0 bytes for permanent pool. LogInit: Object subsystem initialized [2025.10.11-12.13.49:251][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [Engine] [2025.10.11-12.13.49:251][ 0]LogInit: Unix hardware info: [2025.10.11-12.13.49:251][ 0]LogInit: - we are the first instance of this executable [2025.10.11-12.13.49:251][ 0]LogInit: - this process' id (pid) is 26143, parent process' id (ppid) is 25976 [2025.10.11-12.13.49:251][ 0]LogInit: - we are not running under debugger [2025.10.11-12.13.49:251][ 0]LogInit: - machine network name is 'lxng-MS-7D31' [2025.10.11-12.13.49:251][ 0]LogInit: - user name is 'lxng' (lxng) [2025.10.11-12.13.49:251][ 0]LogInit: - we're logged in locally [2025.10.11-12.13.49:251][ 0]LogInit: - we're running with rendering [2025.10.11-12.13.49:251][ 0]LogInit: - CPU: GenuineIntel '12th Gen Intel(R) Core(TM) i9-12900K' (signature: 0x90672) [2025.10.11-12.13.49:251][ 0]LogInit: - Number of physical cores available for the process: 16 [2025.10.11-12.13.49:251][ 0]LogInit: - Number of logical cores available for the process: 24 [2025.10.11-12.13.49:251][ 0]LogInit: - GPU Brand Info: NVIDIA GeForce RTX 4090 (NVIDIA UNIX x86_64 Kernel Module 580.65.06 Sun Jul 27 07:14:19 UTC 2025) [2025.10.11-12.13.49:251][ 0]LogInit: - Memory allocator used: Mimalloc [2025.10.11-12.13.49:251][ 0]LogInit: - This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no [2025.10.11-12.13.49:251][ 0]LogInit: - This is an internal build. [2025.10.11-12.13.49:251][ 0]LogCore: Skipped benchmarking clocks because the engine is running in a standalone program mode - CLOCK_MONOTONIC will be used. [2025.10.11-12.13.49:251][ 0]LogInit: Unix-specific commandline switches: [2025.10.11-12.13.49:251][ 0]LogInit: -ansimalloc - use malloc()/free() from libc (useful for tools like valgrind and electric fence) [2025.10.11-12.13.49:251][ 0]LogInit: -jemalloc - use jemalloc for all memory allocation [2025.10.11-12.13.49:251][ 0]LogInit: -binnedmalloc - use binned malloc for all memory allocation [2025.10.11-12.13.49:251][ 0]LogInit: -filemapcachesize=NUMBER - set the size for case-sensitive file mapping cache [2025.10.11-12.13.49:251][ 0]LogInit: -useksm - uses kernel same-page mapping (KSM) for mapped memory (OFF) [2025.10.11-12.13.49:251][ 0]LogInit: -ksmmergeall - marks all mmap'd memory pages suitable for KSM (OFF) [2025.10.11-12.13.49:251][ 0]LogInit: -preloadmodulesymbols - Loads the main module symbols file into memory (OFF) [2025.10.11-12.13.49:251][ 0]LogInit: -sigdfl=SIGNAL - Allows a specific signal to be set to its default handler rather then ignoring the signal [2025.10.11-12.13.49:251][ 0]LogInit: -crashhandlerstacksize - Allows setting crash handler stack sizes (204800) [2025.10.11-12.13.49:251][ 0]LogInit: -noexclusivelockonwrite - disables marking files created by the engine as exclusive locked while the engine has them opened [2025.10.11-12.13.49:251][ 0]LogInit: -httpproxy=ADDRESS:PORT - redirects HTTP requests to a proxy (only supported if compiled with libcurl) [2025.10.11-12.13.49:251][ 0]LogInit: -reuseconn - allow libcurl to reuse HTTP connections (only matters if compiled with libcurl) [2025.10.11-12.13.49:251][ 0]LogInit: -virtmemkb=NUMBER - sets process virtual memory (address space) limit (overrides VirtualMemoryLimitInKB value from .ini) [2025.10.11-12.13.49:251][ 0]LogInit: -allowsyscallfilterfile=PATH_TO_FILE - sets up a system call filter allow list. any invalid syscall in this list *will* cause a crash [2025.10.11-12.13.49:251][ 0]LogInit: - Physical RAM available (not considering process quota): 63 GB (64086 MB, 65624688 KB, 67199680512 bytes) [2025.10.11-12.13.49:251][ 0]LogInit: - VirtualMemoryAllocator pools will grow at scale 1.4 [2025.10.11-12.13.49:251][ 0]LogInit: - MemoryRangeDecommit() will be a no-op (re-run with -vmapoolevict to change) [2025.10.11-12.13.49:251][ 0]LogInit: - PageSize 4096 [2025.10.11-12.13.49:251][ 0]LogInit: - BinnedPageSize 65536 [2025.10.11-12.13.49:252][ 0]LogUObjectArray: 427 objects as part of root set at end of initial load. [2025.10.11-12.13.49:252][ 0]LogUObjectAllocator: 89672 out of 0 bytes used by permanent object pool. [2025.10.11-12.13.49:252][ 0]LogUObjectArray: CloseDisregardForGC: 0/0 objects in disregard for GC pool [2025.10.11-12.13.49:252][ 0]LogPaths: Warning: No paths for game localization data were specifed in the game configuration. [2025.10.11-12.13.49:252][ 0]LogInit: Using OS detected language (zh-CN). [2025.10.11-12.13.49:252][ 0]LogInit: Using OS detected locale (zh-CN). [2025.10.11-12.13.49:252][ 0]LogInit: Warning: No paths for engine localization data were specifed in the engine configuration. [2025.10.11-12.13.49:252][ 0]LogTextLocalizationManager: No localization for 'zh-CN' exists, so 'en' will be used for the language. [2025.10.11-12.13.49:252][ 0]LogTextLocalizationManager: No localization for 'zh-CN' exists, so 'en' will be used for the locale. [2025.10.11-12.13.49:252][ 0]LogInit: Using OS detected language (zh-CN). [2025.10.11-12.13.49:252][ 0]LogInit: Using OS detected locale (zh-CN). [2025.10.11-12.13.49:252][ 0]LogTextLocalizationManager: No localization for 'zh-CN' exists, so 'en' will be used for the language. [2025.10.11-12.13.49:252][ 0]LogTextLocalizationManager: No localization for 'zh-CN' exists, so 'en' will be used for the locale. [2025.10.11-12.13.49:253][ 0]LogPackageLocalizationCache: Processed 2 localized package path(s) for 1 prioritized culture(s) in 0.000164 seconds [2025.10.11-12.13.49:253][ 0]CrashReportCoreLog: CrashReportClientVersion=1.0 [2025.10.11-12.13.49:253][ 0]CrashReportCoreLog: CrashReportReceiver disabled [2025.10.11-12.13.49:253][ 0]CrashReportCoreLog: DataRouterUrl: https://datarouter.ol.epicgames.com/datarouter/api/v1/public/data [2025.10.11-12.13.49:257][ 0]LogInit: Using libcurl 7.83.1 [2025.10.11-12.13.49:257][ 0]LogInit: - built for Linux [2025.10.11-12.13.49:257][ 0]LogInit: - supports SSL with OpenSSL/1.1.1n [2025.10.11-12.13.49:257][ 0]LogInit: - supports HTTP deflate (compression) using libz 1.2.12 [2025.10.11-12.13.49:257][ 0]LogInit: - other features: [2025.10.11-12.13.49:257][ 0]LogInit: CURL_VERSION_SSL [2025.10.11-12.13.49:257][ 0]LogInit: CURL_VERSION_LIBZ [2025.10.11-12.13.49:257][ 0]LogInit: CURL_VERSION_IPV6 [2025.10.11-12.13.49:257][ 0]LogInit: CURL_VERSION_ASYNCHDNS [2025.10.11-12.13.49:257][ 0]LogInit: CURL_VERSION_LARGEFILE [2025.10.11-12.13.49:257][ 0]LogInit: CurlRequestOptions (configurable via config and command line): [2025.10.11-12.13.49:257][ 0]LogInit: - bVerifyPeer = false - Libcurl will NOT verify peer certificate [2025.10.11-12.13.49:257][ 0]LogInit: - bUseHttpProxy = false - Libcurl will NOT use HTTP proxy [2025.10.11-12.13.49:257][ 0]LogInit: - bDontReuseConnections = false - Libcurl will reuse connections [2025.10.11-12.13.49:257][ 0]LogInit: - MaxHostConnections = 16 - Libcurl will limit the number of connections to a host [2025.10.11-12.13.49:257][ 0]LogInit: - LocalHostAddr = Default [2025.10.11-12.13.49:257][ 0]LogInit: - BufferSize = 65536 [2025.10.11-12.13.49:257][ 0]LogAnalytics: Display: [CrashReporter.Release] APIServer = https://datarouter.ol.epicgames.com/. AppVersion = ++UE5+Release-5.2-CL-26001984 [2025.10.11-12.13.49:257][ 0]LogInit: Initializing SDL. [2025.10.11-12.13.49:271][ 0]LogInit: Initialized SDL 2.24.0 revision: (compiled against 2.24.0) [2025.10.11-12.13.49:271][ 0]LogInit: Using SDL video driver 'x11' [2025.10.11-12.13.49:273][ 0]LogSlate: New Slate User Created. Platform User Id 0, User Index 0, Is Virtual User: 0 [2025.10.11-12.13.49:273][ 0]LogSlate: Slate User Registered. User Index 0, Is Virtual User: 0 [2025.10.11-12.13.49:273][ 0]LogSlate: Using FreeType 2.10.0 [2025.10.11-12.13.49:274][ 0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1 [2025.10.11-12.13.49:274][ 0]LogInit: Using SDL_WINDOW_OPENGL [2025.10.11-12.13.49:294][ 0]LogInit: FSlateOpenGLContext::Initialize - creating OpenGL 2.1 context [2025.10.11-12.13.49:316][ 0]CrashReportCoreLog: Initial state = Unknown UploadState value [2025.10.11-12.13.49:316][ 0]CrashReportCoreLog: Initial state = Unknown UploadState value [2025.10.11-12.13.49:317][ 0]LogLinux: Could not get DPI information for monitor #0, assuming 1.0f [2025.10.11-12.13.49:317][ 0]LogLinux: Could not get DPI information for monitor #0, assuming 1.0f [2025.10.11-12.13.49:318][ 0]LogInit: FSlateOpenGLContext::Initialize - creating OpenGL 2.1 context [2025.10.11-12.13.49:320][ 0]LogSlate: Took 0.000510 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K) [2025.10.11-12.13.49:321][ 0]LogSlate: Took 0.000544 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Bold.ttf' (160K) [2025.10.11-12.13.49:322][ 0]LogSlate: Took 0.000511 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Italic.ttf' (157K)
最新发布
10-12
[2025.10.09-14.25.03:906][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [] [2025.10.09-14.25.03:906][ 0]LogConfig: Applying CVar settings from Section [Startup] File [../../../Engine/Config/ConsoleVariables.ini] [2025.10.09-14.25.03:906][ 0]LogConfig: Set CVar [[r.DumpShaderDebugInfo:2]] [2025.10.09-14.25.03:906][ 0]LogConfig: Set CVar [[p.chaos.AllowCreatePhysxBodies:1]] [2025.10.09-14.25.03:906][ 0]LogConfig: Set CVar [[fx.SkipVectorVMBackendOptimizations:1]] [2025.10.09-14.25.03:906][ 0]LogConfig: Set CVar [[r.ForceDebugViewModes:1]] [2025.10.09-14.25.03:906][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [Engine] [2025.10.09-14.25.03:906][ 0]LogConfig: Set CVar [[HoverDrone.DroneSpeedScalar:0.5]] [2025.10.09-14.25.03:906][ 0]LogConfig: Set CVar [[fx.NiagaraGpuLowLatencyTranslucencyEnabled:1]] [2025.10.09-14.25.03:906][ 0]LogConfig: Set CVar [[P.Chaos.SyncKinematicOnGameThread:1]] [2025.10.09-14.25.03:906][ 0]LogConfig: Set CVar [[MovieRenderPipeline.WaveOutput.WriteDelay:3]] [2025.10.09-14.25.03:906][ 0]LogConfig: Set CVar [[p.ClothPhysics:0]] [2025.10.09-14.25.03:906][ 0]LogConfig: Set CVar [[g.TimeoutForBlockOnRenderFence:60000]] [2025.10.09-14.25.03:906][ 0]LogInit: Unix hardware info: [2025.10.09-14.25.03:906][ 0]LogInit: - we are the first instance of this executable [2025.10.09-14.25.03:906][ 0]LogInit: - this process' id (pid) is 168551, parent process' id (ppid) is 168543 [2025.10.09-14.25.03:906][ 0]LogInit: - we are not running under debugger [2025.10.09-14.25.03:907][ 0]LogInit: - machine network name is 'DESKTOP-2PJK7EV' [2025.10.09-14.25.03:907][ 0]LogInit: - user name is 'lxng' (lxng) [2025.10.09-14.25.03:907][ 0]LogInit: - we're logged in locally [2025.10.09-14.25.03:907][ 0]LogInit: - we're running with rendering [2025.10.09-14.25.03:907][ 0]LogInit: - CPU: GenuineIntel '12th Gen Intel(R) Core(TM) i9-12900K' (signature: 0x90672) [2025.10.09-14.25.03:907][ 0]LogInit: - Number of physical cores available for the process: 12 [2025.10.09-14.25.03:907][ 0]LogInit: - Number of logical cores available for the process: 24 [2025.10.09-14.25.03:907][ 0]LogInit: - GPU Brand Info: UnknownVendor [2025.10.09-14.25.03:907][ 0]LogInit: - Memory allocator used: binned2 [2025.10.09-14.25.03:907][ 0]LogInit: - This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no [2025.10.09-14.25.03:907][ 0]LogInit: - This is an internal build. [2025.10.09-14.25.03:907][ 0]LogCore: Benchmarking clocks: [2025.10.09-14.25.03:907][ 0]LogCore: - CLOCK_MONOTONIC (id=1) can sustain 50522507 (50523K, 51M) calls per second without zero deltas. [2025.10.09-14.25.03:907][ 0]LogCore: - CLOCK_MONOTONIC_RAW (id=4) can sustain 54124297 (54124K, 54M) calls per second without zero deltas. [2025.10.09-14.25.03:907][ 0]LogCore: - CLOCK_MONOTONIC_COARSE (id=6) can sustain 255663865 (255664K, 256M) calls per second with 99.999906% zero deltas. [2025.10.09-14.25.03:907][ 0]LogCore: Selected clock_id 4 (CLOCK_MONOTONIC_RAW) since it is the fastest support clock without zero deltas. [2025.10.09-14.25.03:907][ 0]LogInit: Unix-specific commandline switches: [2025.10.09-14.25.03:907][ 0]LogInit: -ansimalloc - use malloc()/free() from libc (useful for tools like valgrind and electric fence) [2025.10.09-14.25.03:907][ 0]LogInit: -jemalloc - use jemalloc for all memory allocation [2025.10.09-14.25.03:907][ 0]LogInit: -binnedmalloc - use binned malloc for all memory allocation [2025.10.09-14.25.03:907][ 0]LogInit: -filemapcachesize=NUMBER - set the size for case-sensitive file mapping cache [2025.10.09-14.25.03:907][ 0]LogInit: -useksm - uses kernel same-page mapping (KSM) for mapped memory (OFF) [2025.10.09-14.25.03:907][ 0]LogInit: -ksmmergeall - marks all mmap'd memory pages suitable for KSM (OFF) [2025.10.09-14.25.03:907][ 0]LogInit: -preloadmodulesymbols - Loads the main module symbols file into memory (OFF) [2025.10.09-14.25.03:907][ 0]LogInit: -sigdfl=SIGNAL - Allows a specific signal to be set to its default handler rather then ignoring the signal [2025.10.09-14.25.03:907][ 0]LogInit: -crashhandlerstacksize - Allows setting crash handler stack sizes (204800) [2025.10.09-14.25.03:907][ 0]LogInit: -noexclusivelockonwrite - disables marking files created by the engine as exclusive locked while the engine has them opened [2025.10.09-14.25.03:907][ 0]LogInit: -httpproxy=ADDRESS:PORT - redirects HTTP requests to a proxy (only supported if compiled with libcurl) [2025.10.09-14.25.03:907][ 0]LogInit: -reuseconn - allow libcurl to reuse HTTP connections (only matters if compiled with libcurl) [2025.10.09-14.25.03:907][ 0]LogInit: -virtmemkb=NUMBER - sets process virtual memory (address space) limit (overrides VirtualMemoryLimitInKB value from .ini) [2025.10.09-14.25.03:907][ 0]LogInit: -allowsyscallfilterfile=PATH_TO_FILE - sets up a system call filter allow list. any invalid syscall in this list *will* cause a crash [2025.10.09-14.25.03:907][ 0]LogInit: - Physical RAM available (not considering process quota): 32 GB (31986 MB, 32753812 KB, 33539903488 bytes) [2025.10.09-14.25.03:907][ 0]LogInit: - VirtualMemoryAllocator pools will grow at scale 1.4 [2025.10.09-14.25.03:907][ 0]LogInit: - MemoryRangeDecommit() will be a no-op (re-run with -vmapoolevict to change) [2025.10.09-14.25.03:907][ 0]LogInit: - PageSize 4096 [2025.10.09-14.25.03:907][ 0]LogInit: - BinnedPageSize 65536 [2025.10.09-14.25.03:907][ 0]LogCsvProfiler: Display: Metadata set : extradevelopmentmemorymb="0" [2025.10.09-14.25.03:911][ 0]LogInit: Physics initialised using underlying interface: Chaos [2025.10.09-14.25.03:911][ 0]LogInit: Using OS detected language (en-US-POSIX). [2025.10.09-14.25.03:911][ 0]LogInit: Using OS detected locale (en-US-POSIX). [2025.10.09-14.25.03:912][ 0]LogTextLocalizationManager: No specific localization for 'en-US-POSIX' exists, so 'en' will be used for the language. [2025.10.09-14.25.03:937][ 0]LogHAL: Warning: Game icon not found. [2025.10.09-14.25.04:238][ 0]LogSlate: New Slate User Created. Platform User Id 0, User Index 0, Is Virtual User: 0 [2025.10.09-14.25.04:238][ 0]LogSlate: Slate User Registered. User Index 0, Is Virtual User: 0
10-10
UATHelper: 打包 (Windows): LogPackageBuildDependencyTracker: Display: Package Accesses (632 referencing packages with a total of 5512 unique accesses) UATHelper: 打包 (Windows): LogCook: Display: Done! UATHelper: 打包 (Windows): LogSavePackage: Display: Took 0.001448s to verify the EDL loading graph. UATHelper: 打包 (Windows): LogInit: Display: UATHelper: 打包 (Windows): LogInit: Display: Warning/Error Summary (Unique only) UATHelper: 打包 (Windows): LogInit: Display: ----------------------------------- UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: begin: stack for UAT UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: === Handled ensure: === UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: Ensure condition failed: bIsValidTriangle [File:D:\build\++UE5\Sync\Engine\Source\Runtime\Experimental\Chaos\Private\Chaos\CollisionConvexMesh.cpp] [Line: 144] UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: FConvexBuilder::Build(): Generated invalid triangle! UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: Stack: UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: [Callstack] 0x00007ffff9a13b8f UnrealEditor-Chaos.dll!UnknownFunction [] UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: [Callstack] 0x00007ff805986ba0 UnrealEditor-Engine.dll!UnknownFunction [] UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: [Callstack] 0x00007ff80599ec43 UnrealEditor-Engine.dll!UnknownFunction [] UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: [Callstack] 0x00007ff805893044 UnrealEditor-Engine.dll!UnknownFunction [] UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: [Callstack] 0x00007ff8058e9462 UnrealEditor-Engine.dll!UnknownFunction [] UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: [Callstack] 0x00007ff8058e96b1 UnrealEditor-Engine.dll!UnknownFunction [] UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: [Callstack] 0x00007ff8058d203d UnrealEditor-Engine.dll!UnknownFunction [] UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: [Callstack] 0x00007ff8060216c2 UnrealEditor-Engine.dll!UnknownFunction [] UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: [Callstack] 0x00007ff80601f07c UnrealEditor-Engine.dll!UnknownFunction [] UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: [Callstack] 0x00007ff804182896 UnrealEditor-Engine.dll!UnknownFunction [] UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: [Callstack] 0x00007ff80418237e UnrealEditor-Engine.dll!UnknownFunction [] UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: [Callstack] 0x00007ff83d68ef83 UnrealEditor-Core.dll!UnknownFunction [] UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: [Callstack] 0x00007ff804482014 UnrealEditor-Engine.dll!UnknownFunction [] UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: [Callstack] 0x00007ff63fa99edf UnrealEditor-Cmd.exe!UnknownFunction [] UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: [Callstack] 0x00007ff63faa1d53 UnrealEditor-Cmd.exe!UnknownFunction [] UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: [Callstack] 0x00007ff83d2424c5 UnrealEditor-Core.dll!UnknownFunction [] UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: [Callstack] 0x00007ff83d24238e UnrealEditor-Core.dll!UnknownFunction [] UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: [Callstack] 0x00007ff83d26a155 UnrealEditor-Core.dll!UnknownFunction [] UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: [Callstack] 0x00007ff83d2323d0 UnrealEditor-Core.dll!UnknownFunction [] UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: [Callstack] 0x00007ff83d437c93 UnrealEditor-Core.dll!UnknownFunction [] UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: [Callstack] 0x00007ff83d89c93d UnrealEditor-Core.dll!UnknownFunction [] UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: [Callstack] 0x00007ff83d8902b7 UnrealEditor-Core.dll!UnknownFunction [] UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: [Callstack] 0x00007ff902bc259d KERNEL32.DLL!UnknownFunction [] UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: [Callstack] 0x00007ff9036aaf78 ntdll.dll!UnknownFunction [] UATHelper: 打包 (Windows): LogInit: Display: LogOutputDevice: Error: end: stack for UAT
09-20
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值