Method code for $changelog.log()

[Turn on line numbering]
arg entry;

if (!$changelog_group.includes(caller()))
    (> .perms(sender()) <);

// just silently die if logs/ isn't there
catch any {
    .fopen("logs/changelog", ">>");
    .fwrite("[" + time() + "] " + entry);
    .fclose();
}

["// Created 28-Sep-1998 as a part of ColdCore, see: @help Credit"]

the Cold Dark