Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/blendfile.c
| Context not available. | |||||
| # include "BPY_extern.h" | # include "BPY_extern.h" | ||||
| #endif | #endif | ||||
| #include "CLG_log.h" | |||||
| static CLG_LogRef LOG = { "bke.blender" }; | |||||
| /* -------------------------------------------------------------------- */ | /* -------------------------------------------------------------------- */ | ||||
| /** \name High Level `.blend` file read/write. | /** \name High Level `.blend` file read/write. | ||||
| * \{ */ | * \{ */ | ||||
| Context not available. | |||||
| /* don't print user-pref loading */ | /* don't print user-pref loading */ | ||||
| if (strstr(filepath, BLENDER_STARTUP_FILE) == NULL) { | if (strstr(filepath, BLENDER_STARTUP_FILE) == NULL) { | ||||
| printf("Read blend: %s\n", filepath); | CLOG_INFO(&LOG, 1, "Read blend: %s", filepath); | ||||
| } | } | ||||
| bfd = BLO_read_from_file(filepath, params->skip_flags, reports); | bfd = BLO_read_from_file(filepath, params->skip_flags, reports); | ||||
| Context not available. | |||||