Codebase list erlang-bitcask / a9da9c1
Fix bad lager:info() call with error_logger:info_msg() Scott Lystig Fritchie 10 years ago
1 changed file(s) with 2 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
908908 case bitcask_fileops:fold_keys(File, F, 0, recovery) of
909909 0 ->
910910 bitcask_fileops:delete(File),
911 lager:info("removing empty cask file");
911 error_logger:info_msg("Removing empty cask file ~p",
912 [Filename]);
912913 _R ->
913914 ok
914915 end,