about summary refs log tree commit diff stats
path: root/src/log.c
Commit message (Collapse)AuthorAgeFilesLines
* Added license exemption for OpenSSL to source headersJames Booth2014-08-241-0/+12
|
* Fixed memleak in chat log historyJames Booth2014-06-271-8/+11
|
* Fixed cppcheck warningsJames Booth2014-04-261-3/+2
|
* Added /log where commandJames Booth2014-04-131-0/+9
|
* Added /log shared settingJames Booth2014-04-131-5/+17
| | | | Issue #170
* Added /log rotate optionJames Booth2014-04-131-3/+5
|
* Updated copyrightJames Booth2014-03-091-1/+1
|
* Add level to log outputJames Booth2014-01-271-1/+23
|
* fixed segfault when home directory doesn't existDmitry Podgorny2014-01-031-27/+31
|
* Fixed memory leak in groupchat loggingJames Booth2013-09-231-0/+1
| | | | issue #226
* Fixed memory leaks in chat logsJames Booth2013-09-231-9/+9
| | | | issue #226
* tz should be cached in static variableDmitry Podgorny2013-08-241-4/+0
|
* avoid double allocaion of session_startedDmitry Podgorny2013-08-241-1/+0
|
* refactored loggingDmitry Podgorny2013-08-031-19/+8
| | | | Use ftell instead of stat syscall to increase portability.
* Added groupchat logsJames Booth2013-05-051-1/+107
| | | | closes #168
* Default to INFO when creating logJames Booth2013-02-031-1/+3
|
* Removed log function to log.cJames Booth2013-02-031-0/+16
|
* Removed files.cJames Booth2013-02-021-1/+0
|
* Moved function to get log dir to log.cJames Booth2013-02-021-4/+16
|
* Moved function to get chat log dir to log.cJames Booth2013-02-021-1/+16
|
* Added config dir to sourceJames Booth2013-02-021-1/+1
|
* Tidied #include'sJames Booth2013-02-021-2/+3
|
* Joined log and chat_log modulesJames Booth2013-01-281-0/+219
|
* Updated copyrightJames Booth2013-01-111-1/+1
|
* Profanity files now use %XDG_CONFIG_HOME and %XDG_DATA_HOMEJames Booth2012-11-251-22/+12
|
* introduce initial log rotate supportDmitry Podgorny2012-11-111-4/+53
|
* Removed trailing whitespace from src and testsJames Booth2012-10-211-8/+8
|
* Shutdown now correctly handles connectionJames Booth2012-09-231-0/+1
|
* Fixed vargs strings in logJames Booth2012-09-091-13/+18
|
* Tidied all includesJames Booth2012-08-261-1/+1
|
* Refactored logJames Booth2012-08-261-20/+58
| | | | Added shortcut functions for prof logging levels
* Added some logging and updated man pageJames Booth2012-08-221-1/+0
|
* Customisable logging levelsJames Booth2012-08-191-4/+14
|
* Basic log levels settingsJames Booth2012-08-191-7/+17
|
* Removed extern for logJames Booth2012-08-191-1/+1
|
* Added timestamp to logJames Booth2012-08-191-1/+10
|
* Function signatures across linesJames Booth2012-07-241-3/+6
|
* Log location ~/.profanity/log/profanity.logJames Booth2012-07-191-1/+10
|
* Added autobuild toolsJames Booth2012-07-011-0/+43
640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917